blob: 5bb193a6c303e4ed2aa562007afe7836b3bd842c [file] [log] [blame]
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001/*
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002 *
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
Jorim Jaggib10e33f2015-02-04 21:57:40 +010016package com.android.server.policy;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080017
Dianne Hackborna4972e92012-03-14 10:38:05 -070018import android.app.ActivityManager;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080019import android.app.ActivityManagerNative;
Dianne Hackbornc2293022013-02-06 23:14:49 -080020import android.app.AppOpsManager;
Daniel Sandler6396c722013-04-16 20:19:09 -040021import android.app.IUiModeManager;
Dianne Hackborn661cd522011-08-22 00:26:20 -070022import android.app.ProgressDialog;
Jeff Brownde7a8ea2012-06-13 18:28:57 -070023import android.app.SearchManager;
John Spurlock97642182013-07-29 17:58:39 -040024import android.app.StatusBarManager;
Dianne Hackborn78968392010-03-04 20:47:56 -080025import android.app.UiModeManager;
Dianne Hackborn39c2d712009-09-22 11:41:31 -070026import android.content.ActivityNotFoundException;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080027import android.content.BroadcastReceiver;
Daniel Sandler0601eb72011-04-13 01:01:32 -040028import android.content.ComponentName;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080029import android.content.ContentResolver;
30import android.content.Context;
31import android.content.Intent;
Mike Lockwood1753f7f2009-08-24 14:49:07 -070032import android.content.IntentFilter;
Winson Chung9112ec32011-06-27 13:15:32 -070033import android.content.ServiceConnection;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080034import android.content.pm.ActivityInfo;
35import android.content.pm.PackageManager;
Daniel Sandler6396c722013-04-16 20:19:09 -040036import android.content.pm.ResolveInfo;
Dianne Hackborn2f0b1752011-05-31 17:59:49 -070037import android.content.res.CompatibilityInfo;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080038import android.content.res.Configuration;
39import android.content.res.Resources;
Craig Mautner8e4df6c2012-05-23 16:57:23 -070040import android.content.res.TypedArray;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080041import android.database.ContentObserver;
Dianne Hackbornc777e072010-02-12 13:07:59 -080042import android.graphics.PixelFormat;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080043import android.graphics.Rect;
John Spurlock7b414672014-07-18 13:02:39 -040044import android.media.AudioAttributes;
Michael Jurka7a348952012-02-27 13:07:58 -080045import android.media.AudioManager;
John Spurlock61560172015-02-06 19:46:04 -050046import android.media.AudioSystem;
Michael Jurka7a348952012-02-27 13:07:58 -080047import android.media.IAudioService;
Svetoslav Ganov7befb7d2012-09-27 16:49:23 -070048import android.media.Ringtone;
49import android.media.RingtoneManager;
RoboErik8a2cfc32014-05-16 11:19:38 -070050import android.media.session.MediaSessionLegacyHelper;
Dianne Hackborn38e29a62011-09-18 14:43:08 -070051import android.os.Bundle;
Craig Mautner276a6eb2014-11-04 15:32:57 -080052import android.os.Debug;
Jeff Brown9a538ee2012-08-20 14:56:57 -070053import android.os.FactoryTest;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080054import android.os.Handler;
55import android.os.IBinder;
Jeff Brown32cbc38552011-12-01 14:01:49 -080056import android.os.Looper;
Dianne Hackbornfc8fa632011-08-17 16:20:47 -070057import android.os.Message;
58import android.os.Messenger;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080059import android.os.PowerManager;
60import android.os.RemoteException;
61import android.os.ServiceManager;
62import android.os.SystemClock;
63import android.os.SystemProperties;
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -080064import android.os.UEventObserver;
Dianne Hackbornf02b60a2012-08-16 10:48:27 -070065import android.os.UserHandle;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080066import android.os.Vibrator;
Michael Wright3818c922014-09-02 13:59:07 -070067import android.provider.MediaStore;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080068import android.provider.Settings;
Jose Lima9546b202014-07-02 17:21:51 -070069import android.service.dreams.DreamManagerInternal;
John Spurlockc8b46ca2013-04-08 12:59:26 -040070import android.service.dreams.DreamService;
71import android.service.dreams.IDreamManager;
Michael Wrightdc63f7b2014-08-21 19:05:21 -070072import android.speech.RecognizerIntent;
Tyler Gunnef9f6f92014-09-12 22:16:17 -070073import android.telecom.TelecomManager;
Dianne Hackborn81e56d52011-05-26 00:55:58 -070074import android.util.DisplayMetrics;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080075import android.util.EventLog;
76import android.util.Log;
Jeff Browna41ca772010-08-11 14:46:32 -070077import android.util.Slog;
Jeff Brown6651a632011-11-28 12:59:11 -080078import android.util.SparseArray;
Dianne Hackbornf87d1962012-04-04 12:48:24 -070079import android.view.Display;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080080import android.view.Gravity;
81import android.view.HapticFeedbackConstants;
Dianne Hackborne0f085d2011-11-30 18:41:15 -080082import android.view.IApplicationToken;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080083import android.view.IWindowManager;
Jeff Browna41ca772010-08-11 14:46:32 -070084import android.view.InputChannel;
Jeff Brown4d396052010-10-29 21:50:21 -070085import android.view.InputDevice;
Jeff Brown4952dfd2011-11-30 19:23:22 -080086import android.view.InputEvent;
Jeff Brown32cbc38552011-12-01 14:01:49 -080087import android.view.InputEventReceiver;
Jeff Brown6b53e8d2010-11-10 16:03:06 -080088import android.view.KeyCharacterMap;
Craig Mautnerae446592012-12-06 19:05:05 -080089import android.view.KeyCharacterMap.FallbackAction;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080090import android.view.KeyEvent;
91import android.view.MotionEvent;
Jorim Jaggib10e33f2015-02-04 21:57:40 +010092import android.view.PhoneWindow;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080093import android.view.Surface;
94import android.view.View;
95import android.view.ViewConfiguration;
96import android.view.Window;
97import android.view.WindowManager;
Craig Mautnerae446592012-12-06 19:05:05 -080098import android.view.WindowManagerGlobal;
Craig Mautner8a0da012014-05-31 15:13:37 -070099import android.view.WindowManagerInternal;
Craig Mautnerae446592012-12-06 19:05:05 -0800100import android.view.WindowManagerPolicy;
Craig Mautnerae446592012-12-06 19:05:05 -0800101import android.view.accessibility.AccessibilityEvent;
Svetoslav8e3feb12014-02-24 13:46:47 -0800102import android.view.accessibility.AccessibilityManager;
Craig Mautnerae446592012-12-06 19:05:05 -0800103import android.view.animation.Animation;
Jorim Jaggi76a16232014-08-08 17:00:47 +0200104import android.view.animation.AnimationSet;
Craig Mautnerae446592012-12-06 19:05:05 -0800105import android.view.animation.AnimationUtils;
106
107import com.android.internal.R;
Craig Mautnerae446592012-12-06 19:05:05 -0800108import com.android.internal.statusbar.IStatusBarService;
Craig Mautnerae446592012-12-06 19:05:05 -0800109import com.android.internal.widget.PointerLocationView;
Craig Mautner8a0da012014-05-31 15:13:37 -0700110import com.android.server.LocalServices;
Jorim Jaggib10e33f2015-02-04 21:57:40 +0100111import com.android.server.policy.keyguard.KeyguardServiceDelegate;
112import com.android.server.policy.keyguard.KeyguardServiceDelegate.ShowListener;
Craig Mautnerae446592012-12-06 19:05:05 -0800113
114import java.io.File;
115import java.io.FileReader;
116import java.io.IOException;
117import java.io.PrintWriter;
Craig Mautner2bc789b2014-03-19 19:48:38 -0700118import java.util.HashSet;
Craig Mautner276a6eb2014-11-04 15:32:57 -0800119import java.util.List;
Craig Mautnerae446592012-12-06 19:05:05 -0800120
Dianne Hackbornc652de82013-02-15 16:32:56 -0800121import static android.view.WindowManager.LayoutParams.*;
Jeff Brownac143512012-04-05 18:57:33 -0700122import static android.view.WindowManagerPolicy.WindowManagerFuncs.LID_ABSENT;
123import static android.view.WindowManagerPolicy.WindowManagerFuncs.LID_OPEN;
124import static android.view.WindowManagerPolicy.WindowManagerFuncs.LID_CLOSED;
Michael Wright3818c922014-09-02 13:59:07 -0700125import static android.view.WindowManagerPolicy.WindowManagerFuncs.CAMERA_LENS_COVER_ABSENT;
126import static android.view.WindowManagerPolicy.WindowManagerFuncs.CAMERA_LENS_UNCOVERED;
127import static android.view.WindowManagerPolicy.WindowManagerFuncs.CAMERA_LENS_COVERED;
Dianne Hackborn08743722009-12-21 12:16:51 -0800128
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800129/**
The Android Open Source Project0727d222009-03-11 12:11:58 -0700130 * WindowManagerPolicy implementation for the Android phone UI. This
131 * introduces a new method suffix, Lp, for an internal lock of the
132 * PhoneWindowManager. This is used to protect some internal state, and
John Spurlock04db1762013-05-13 12:46:41 -0400133 * 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 -0700134 * of both of those when held.
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800135 */
136public class PhoneWindowManager implements WindowManagerPolicy {
137 static final String TAG = "WindowManager";
138 static final boolean DEBUG = false;
Joe Onorato43a17652011-04-06 19:22:23 -0700139 static final boolean localLOGV = false;
Jeff Brown40013652012-05-16 21:22:36 -0700140 static final boolean DEBUG_INPUT = false;
Craig Mautnerc0d2d0a2014-10-31 16:25:15 -0700141 static final boolean DEBUG_KEYGUARD = false;
142 static final boolean DEBUG_LAYOUT = false;
Craig Mautner6fbda632012-07-03 09:26:39 -0700143 static final boolean DEBUG_STARTING_WINDOW = false;
Craig Mautner8a0da012014-05-31 15:13:37 -0700144 static final boolean DEBUG_WAKEUP = false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800145 static final boolean SHOW_STARTING_ANIMATIONS = true;
146 static final boolean SHOW_PROCESSES_ON_ALT_MENU = false;
Joe Onoratod208e702010-10-08 16:22:43 -0400147
Daniel Sandler6396c722013-04-16 20:19:09 -0400148 // Whether to allow dock apps with METADATA_DOCK_HOME to temporarily take over the Home key.
149 // No longer recommended for desk docks; still useful in car docks.
150 static final boolean ENABLE_CAR_DOCK_HOME_CAPTURE = true;
151 static final boolean ENABLE_DESK_DOCK_HOME_CAPTURE = false;
152
Jeff Brown6d8fd272014-05-20 21:24:38 -0700153 static final int SHORT_PRESS_POWER_NOTHING = 0;
154 static final int SHORT_PRESS_POWER_GO_TO_SLEEP = 1;
155 static final int SHORT_PRESS_POWER_REALLY_GO_TO_SLEEP = 2;
156 static final int SHORT_PRESS_POWER_REALLY_GO_TO_SLEEP_AND_GO_HOME = 3;
Bryce Lee01b0c5f2015-02-05 18:24:04 -0800157 static final int SHORT_PRESS_POWER_GO_HOME = 4;
Jeff Brown6d8fd272014-05-20 21:24:38 -0700158
Joe Onoratod208e702010-10-08 16:22:43 -0400159 static final int LONG_PRESS_POWER_NOTHING = 0;
160 static final int LONG_PRESS_POWER_GLOBAL_ACTIONS = 1;
161 static final int LONG_PRESS_POWER_SHUT_OFF = 2;
Jeff Brown9a538ee2012-08-20 14:56:57 -0700162 static final int LONG_PRESS_POWER_SHUT_OFF_NO_CONFIRM = 3;
Michael Jurka3b1fc472011-06-13 10:54:40 -0700163
Jeff Brown13f00f02014-10-31 14:45:50 -0700164 static final int MULTI_PRESS_POWER_NOTHING = 0;
165 static final int MULTI_PRESS_POWER_THEATER_MODE = 1;
166 static final int MULTI_PRESS_POWER_BRIGHTNESS_BOOST = 2;
167
Michael Jurka3b1fc472011-06-13 10:54:40 -0700168 // These need to match the documentation/constant in
169 // core/res/res/values/config.xml
Joe Onorato46b0d682010-11-22 17:37:27 -0800170 static final int LONG_PRESS_HOME_NOTHING = 0;
Michael Wrightc9ebea72013-01-16 19:25:02 -0800171 static final int LONG_PRESS_HOME_RECENT_SYSTEM_UI = 1;
Jeff Browncaca8812013-05-09 13:34:33 -0700172 static final int LONG_PRESS_HOME_ASSIST = 2;
173
174 static final int DOUBLE_TAP_HOME_NOTHING = 0;
175 static final int DOUBLE_TAP_HOME_RECENT_SYSTEM_UI = 1;
Joe Onorato46b0d682010-11-22 17:37:27 -0800176
Dianne Hackborn5cb8d792009-05-21 17:34:15 -0700177 static final int APPLICATION_MEDIA_SUBLAYER = -2;
178 static final int APPLICATION_MEDIA_OVERLAY_SUBLAYER = -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800179 static final int APPLICATION_PANEL_SUBLAYER = 1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800180 static final int APPLICATION_SUB_PANEL_SUBLAYER = 2;
Craig Mautner88400d32012-09-30 12:35:45 -0700181
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800182 static public final String SYSTEM_DIALOG_REASON_KEY = "reason";
183 static public final String SYSTEM_DIALOG_REASON_GLOBAL_ACTIONS = "globalactions";
184 static public final String SYSTEM_DIALOG_REASON_RECENT_APPS = "recentapps";
Joe Onoratof275f0c2009-11-24 16:11:13 -0500185 static public final String SYSTEM_DIALOG_REASON_HOME_KEY = "homekey";
Jeff Brownde7a8ea2012-06-13 18:28:57 -0700186 static public final String SYSTEM_DIALOG_REASON_ASSIST = "assist";
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800187
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -0700188 /**
189 * These are the system UI flags that, when changing, can cause the layout
190 * of the screen to change.
191 */
192 static final int SYSTEM_UI_CHANGING_LAYOUT =
John Spurlocke1f366f2013-08-05 12:22:40 -0400193 View.SYSTEM_UI_FLAG_HIDE_NAVIGATION
John Spurlock7f4820a2013-10-08 12:54:35 -0400194 | View.SYSTEM_UI_FLAG_FULLSCREEN
195 | View.STATUS_BAR_TRANSLUCENT
Adrian Roosea562512014-05-05 13:33:03 +0200196 | View.NAVIGATION_BAR_TRANSLUCENT
197 | View.SYSTEM_UI_TRANSPARENT;
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -0700198
John Spurlock7b414672014-07-18 13:02:39 -0400199 private static final AudioAttributes VIBRATION_ATTRIBUTES = new AudioAttributes.Builder()
200 .setContentType(AudioAttributes.CONTENT_TYPE_SONIFICATION)
201 .setUsage(AudioAttributes.USAGE_ASSISTANCE_SONIFICATION)
202 .build();
203
Jim Miller5ecd8112013-01-09 18:50:26 -0800204 /**
205 * Keyguard stuff
206 */
207 private WindowState mKeyguardScrim;
Jorim Jaggi380ecb82014-03-14 17:25:20 +0100208 private boolean mKeyguardHidden;
Jeff Brown3ee549c2014-09-22 20:14:39 -0700209 private boolean mKeyguardDrawnOnce;
Jim Miller5ecd8112013-01-09 18:50:26 -0800210
Jeff Brown6651a632011-11-28 12:59:11 -0800211 /* Table of Application Launch keys. Maps from key codes to intent categories.
212 *
213 * These are special keys that are used to launch particular kinds of applications,
214 * such as a web browser. HID defines nearly a hundred of them in the Consumer (0x0C)
215 * usage page. We don't support quite that many yet...
216 */
217 static SparseArray<String> sApplicationLaunchKeyCategories;
218 static {
219 sApplicationLaunchKeyCategories = new SparseArray<String>();
220 sApplicationLaunchKeyCategories.append(
221 KeyEvent.KEYCODE_EXPLORER, Intent.CATEGORY_APP_BROWSER);
222 sApplicationLaunchKeyCategories.append(
223 KeyEvent.KEYCODE_ENVELOPE, Intent.CATEGORY_APP_EMAIL);
224 sApplicationLaunchKeyCategories.append(
225 KeyEvent.KEYCODE_CONTACTS, Intent.CATEGORY_APP_CONTACTS);
226 sApplicationLaunchKeyCategories.append(
227 KeyEvent.KEYCODE_CALENDAR, Intent.CATEGORY_APP_CALENDAR);
228 sApplicationLaunchKeyCategories.append(
229 KeyEvent.KEYCODE_MUSIC, Intent.CATEGORY_APP_MUSIC);
230 sApplicationLaunchKeyCategories.append(
231 KeyEvent.KEYCODE_CALCULATOR, Intent.CATEGORY_APP_CALCULATOR);
232 }
233
Craig Mautnerc3daedd2014-09-13 11:17:23 -0700234 /** Amount of time (in milliseconds) to wait for windows drawn before powering on. */
235 static final int WAITING_FOR_DRAWN_TIMEOUT = 1000;
236
Dianne Hackborndf89e652011-10-06 22:35:11 -0700237 /**
238 * Lock protecting internal state. Must not call out into window
239 * manager with lock held. (This lock will be acquired in places
240 * where the window manager is calling in with its own lock held.)
241 */
Craig Mautner0bf6ec92012-12-18 08:33:27 -0800242 private final Object mLock = new Object();
Dianne Hackborndf89e652011-10-06 22:35:11 -0700243
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800244 Context mContext;
245 IWindowManager mWindowManager;
Dianne Hackborndf89e652011-10-06 22:35:11 -0700246 WindowManagerFuncs mWindowManagerFuncs;
Craig Mautner8a0da012014-05-31 15:13:37 -0700247 WindowManagerInternal mWindowManagerInternal;
Jeff Brown96307042012-07-27 15:51:34 -0700248 PowerManager mPowerManager;
Jose Lima9546b202014-07-02 17:21:51 -0700249 DreamManagerInternal mDreamManagerInternal;
Joe Onorato93056472010-09-10 10:30:46 -0400250 IStatusBarService mStatusBarService;
Jeff Browncaca8812013-05-09 13:34:33 -0700251 boolean mPreloadedRecentApps;
Dianne Hackborn42e620c2012-06-24 13:20:51 -0700252 final Object mServiceAquireLock = new Object();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800253 Vibrator mVibrator; // Vibrator for giving feedback of orientation changes
Jeff Brownde7a8ea2012-06-13 18:28:57 -0700254 SearchManager mSearchManager;
Svetoslav8e3feb12014-02-24 13:46:47 -0800255 AccessibilityManager mAccessibilityManager;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800256
Dianne Hackborn181ceb52009-08-27 22:16:40 -0700257 // Vibrator pattern for haptic feedback of a long press.
258 long[] mLongPressVibePattern;
Craig Mautner88400d32012-09-30 12:35:45 -0700259
Dianne Hackborn181ceb52009-08-27 22:16:40 -0700260 // Vibrator pattern for haptic feedback of virtual key press.
261 long[] mVirtualKeyVibePattern;
Craig Mautner967212c2013-04-13 21:10:58 -0700262
Amith Yamasanic33cb712010-02-10 15:21:49 -0800263 // Vibrator pattern for a short vibration.
264 long[] mKeyboardTapVibePattern;
265
Fabrice Di Meglioeeff63a2013-08-05 12:07:24 -0700266 // Vibrator pattern for a short vibration when tapping on an hour/minute tick of a Clock.
267 long[] mClockTickVibePattern;
268
Fabrice Di Megliobd9152f2013-10-01 11:21:31 -0700269 // Vibrator pattern for a short vibration when tapping on a day/month/year date of a Calendar.
270 long[] mCalendarDateVibePattern;
271
Dianne Hackbornb1a79802009-09-29 15:18:31 -0700272 // Vibrator pattern for haptic feedback during boot when safe mode is disabled.
273 long[] mSafeModeDisabledVibePattern;
Craig Mautner967212c2013-04-13 21:10:58 -0700274
Dianne Hackbornb1a79802009-09-29 15:18:31 -0700275 // Vibrator pattern for haptic feedback during boot when safe mode is enabled.
276 long[] mSafeModeEnabledVibePattern;
Romain Guy8154cd32010-03-29 14:41:15 -0700277
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800278 /** If true, hitting shift & menu will broadcast Intent.ACTION_BUG_REPORT */
279 boolean mEnableShiftMenuBugReports = false;
Mike Lockwoodd747dc82011-09-13 16:28:22 -0400280
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800281 boolean mSafeMode;
282 WindowState mStatusBar = null;
Dianne Hackborn69cb8752011-05-19 18:13:32 -0700283 int mStatusBarHeight;
Daniel Sandler8956dbb2011-04-22 07:55:02 -0400284 WindowState mNavigationBar = null;
Daniel Sandler36412a72011-08-04 09:35:13 -0400285 boolean mHasNavigationBar = false;
Dianne Hackbornf87d1962012-04-04 12:48:24 -0700286 boolean mCanHideNavigationBar = false;
Daniel Sandler4a066c52012-04-20 14:49:13 -0400287 boolean mNavigationBarCanMove = false; // can the navigation bar ever move to the side?
288 boolean mNavigationBarOnBottom = true; // is the navigation bar on the bottom *right now*?
289 int[] mNavigationBarHeightForRotation = new int[4];
290 int[] mNavigationBarWidthForRotation = new int[4];
Daniel Sandler8956dbb2011-04-22 07:55:02 -0400291
Craig Mautnera631d492014-08-05 15:16:01 -0700292 boolean mBootMessageNeedsHiding;
Jim Miller5ecd8112013-01-09 18:50:26 -0800293 KeyguardServiceDelegate mKeyguardDelegate;
Craig Mautner13f6ea72014-06-23 14:57:02 -0700294 final Runnable mWindowManagerDrawCallback = new Runnable() {
Craig Mautner8a0da012014-05-31 15:13:37 -0700295 @Override
Craig Mautner13f6ea72014-06-23 14:57:02 -0700296 public void run() {
Craig Mautner8a0da012014-05-31 15:13:37 -0700297 if (DEBUG_WAKEUP) Slog.i(TAG, "All windows ready for display!");
298 mHandler.sendEmptyMessage(MSG_WINDOW_MANAGER_DRAWN_COMPLETE);
299 }
300 };
301 final ShowListener mKeyguardDelegateCallback = new ShowListener() {
302 @Override
303 public void onShown(IBinder windowToken) {
304 if (DEBUG_WAKEUP) Slog.d(TAG, "mKeyguardDelegate.ShowListener.onShown.");
305 mHandler.sendEmptyMessage(MSG_KEYGUARD_DRAWN_COMPLETE);
306 }
307 };
308
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800309 GlobalActions mGlobalActions;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800310 Handler mHandler;
satok1bc0a492012-04-25 22:47:12 +0900311 WindowState mLastInputMethodWindow = null;
312 WindowState mLastInputMethodTargetWindow = null;
Jeff Brown4aed78b2011-01-14 17:36:55 -0800313
Jeff Brown13f00f02014-10-31 14:45:50 -0700314 // FIXME This state is shared between the input reader and handler thread.
315 // Technically it's broken and buggy but it has been like this for many years
316 // and we have not yet seen any problems. Someday we'll rewrite this logic
317 // so that only one thread is involved in handling input policy. Unfortunately
318 // it's on a critical path for power management so we can't just post the work to the
319 // handler thread. We'll need to resolve this someday by teaching the input dispatcher
320 // to hold wakelocks during dispatch and eliminating the critical path.
321 volatile boolean mPowerKeyHandled;
Bryce Leed9268e32014-11-17 17:40:59 -0800322 volatile boolean mBeganFromNonInteractive;
Jeff Brown13f00f02014-10-31 14:45:50 -0700323 volatile int mPowerKeyPressCounter;
324 volatile boolean mEndCallKeyHandled;
325
Winson Chungd42a6cf2014-06-03 16:24:04 -0700326 boolean mRecentsVisible;
Winson Chung1e8d71b2014-05-16 17:05:22 -0700327 int mRecentAppsHeldModifiers;
Jeff Browncf39bdf2012-05-18 14:41:19 -0700328 boolean mLanguageSwitchKeyPressed;
Jeff Brown68b909d2011-12-07 16:36:01 -0800329
Jeff Brown2e7760e2012-04-11 15:14:55 -0700330 int mLidState = LID_ABSENT;
Michael Wright3818c922014-09-02 13:59:07 -0700331 int mCameraLensCoverState = CAMERA_LENS_COVER_ABSENT;
Jeff Browndaa37532012-05-01 15:54:03 -0700332 boolean mHaveBuiltInKeyboard;
Jeff Brown4aed78b2011-01-14 17:36:55 -0800333
Dianne Hackbornc777e072010-02-12 13:07:59 -0800334 boolean mSystemReady;
Dianne Hackbornba24e4d2011-09-01 11:17:06 -0700335 boolean mSystemBooted;
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -0800336 boolean mHdmiPlugged;
Jeff Brown4f5fa282014-06-12 19:19:15 -0700337 IUiModeManager mUiModeManager;
Daniel Sandler6396c722013-04-16 20:19:09 -0400338 int mUiMode;
Dianne Hackborn867ab6472010-04-29 13:28:56 -0700339 int mDockMode = Intent.EXTRA_DOCK_STATE_UNDOCKED;
Mike Lockwood1753f7f2009-08-24 14:49:07 -0700340 int mLidOpenRotation;
Mike Lockwood2d1efbd2009-09-16 12:15:53 -0400341 int mCarDockRotation;
342 int mDeskDockRotation;
Jeff Brownc82c89ed2013-04-17 17:18:15 -0700343 int mUndockedHdmiRotation;
344 int mDemoHdmiRotation;
345 boolean mDemoHdmiRotationLock;
Chong Zhangae6119ff2014-11-11 18:54:39 -0800346 int mDemoRotation;
347 boolean mDemoRotationLock;
Daniel Sandlerb73617d2010-08-17 00:41:00 -0400348
Jeff Browna20dda42014-05-27 20:57:24 -0700349 boolean mWakeGestureEnabledSetting;
350 MyWakeGestureListener mWakeGestureListener;
351
Craig Mautner46ac6fa2013-08-01 10:06:34 -0700352 // Default display does not rotate, apps that require non-default orientation will have to
353 // have the orientation emulated.
354 private boolean mForceDefaultOrientation = false;
355
Daniel Sandlerb73617d2010-08-17 00:41:00 -0400356 int mUserRotationMode = WindowManagerPolicy.USER_ROTATION_FREE;
357 int mUserRotation = Surface.ROTATION_0;
Jeff Brown207673cd2012-06-05 17:47:11 -0700358 boolean mAccelerometerDefault;
Daniel Sandlerb73617d2010-08-17 00:41:00 -0400359
Jeff Brownbcdfc622014-03-06 19:13:04 -0800360 boolean mSupportAutoRotation;
Jeff Brownd3187e32011-09-21 19:26:44 -0700361 int mAllowAllRotations = -1;
Mike Lockwoode9867d22009-09-20 01:59:02 -0400362 boolean mCarDockEnablesAccelerometer;
363 boolean mDeskDockEnablesAccelerometer;
Dianne Hackborn2862fff2009-09-15 22:56:29 -0700364 int mLidKeyboardAccessibility;
365 int mLidNavigationAccessibility;
Jeff Brownc458ce92012-04-30 14:58:40 -0700366 boolean mLidControlsSleep;
Jeff Brown13f00f02014-10-31 14:45:50 -0700367 int mShortPressOnPowerBehavior;
368 int mLongPressOnPowerBehavior;
369 int mDoublePressOnPowerBehavior;
370 int mTriplePressOnPowerBehavior;
Jeff Brown3ee549c2014-09-22 20:14:39 -0700371 boolean mAwake;
372 boolean mScreenOnEarly;
373 boolean mScreenOnFully;
374 ScreenOnListener mScreenOnListener;
375 boolean mKeyguardDrawComplete;
376 boolean mWindowManagerDrawComplete;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800377 boolean mOrientationSensorEnabled = false;
378 int mCurrentAppOrientation = ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800379 boolean mHasSoftInput = false;
Daniel Sandlerdd73ee42013-10-11 22:19:59 -0400380 boolean mTranslucentDecorEnabled = true;
RoboErik001c59c2015-01-26 15:53:51 -0800381 boolean mUseTvRouting;
382 boolean mUseMasterVolume;
Craig Mautner967212c2013-04-13 21:10:58 -0700383
Jeff Brown70825162012-03-28 17:27:48 -0700384 int mPointerLocationMode = 0; // guarded by mLock
Joe Onorato664644d2011-01-23 17:53:23 -0800385
386 // The last window we were told about in focusChanged.
387 WindowState mFocusedWindow;
Dianne Hackborne0f085d2011-11-30 18:41:15 -0800388 IApplicationToken mFocusedApp;
Joe Onorato664644d2011-01-23 17:53:23 -0800389
Jeff Brown70825162012-03-28 17:27:48 -0700390 PointerLocationView mPointerLocationView;
Jeff Brown32cbc38552011-12-01 14:01:49 -0800391
Dianne Hackbornc652de82013-02-15 16:32:56 -0800392 // The current size of the screen; really; extends into the overscan area of
393 // the screen and doesn't account for any system elements like the status bar.
394 int mOverscanScreenLeft, mOverscanScreenTop;
395 int mOverscanScreenWidth, mOverscanScreenHeight;
396 // The current visible size of the screen; really; (ir)regardless of whether the status
397 // bar can be hidden but not extending into the overscan area.
Joe Onorato29fc2c92010-11-24 10:26:50 -0800398 int mUnrestrictedScreenLeft, mUnrestrictedScreenTop;
399 int mUnrestrictedScreenWidth, mUnrestrictedScreenHeight;
Dianne Hackborn313440842013-02-19 19:22:59 -0800400 // Like mOverscanScreen*, but allowed to move into the overscan region where appropriate.
401 int mRestrictedOverscanScreenLeft, mRestrictedOverscanScreenTop;
402 int mRestrictedOverscanScreenWidth, mRestrictedOverscanScreenHeight;
Dianne Hackborn82de1ae2010-10-28 11:28:39 -0700403 // The current size of the screen; these may be different than (0,0)-(dw,dh)
404 // if the status bar can't be hidden; in that case it effectively carves out
405 // that area of the display from all other windows.
Joe Onorato29fc2c92010-11-24 10:26:50 -0800406 int mRestrictedScreenLeft, mRestrictedScreenTop;
407 int mRestrictedScreenWidth, mRestrictedScreenHeight;
Dianne Hackborn5c58de32012-04-28 19:52:37 -0700408 // During layout, the current screen borders accounting for any currently
409 // visible system UI elements.
410 int mSystemLeft, mSystemTop, mSystemRight, mSystemBottom;
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -0700411 // For applications requesting stable content insets, these are them.
412 int mStableLeft, mStableTop, mStableRight, mStableBottom;
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -0700413 // For applications requesting stable content insets but have also set the
414 // fullscreen window flag, these are the stable dimensions without the status bar.
415 int mStableFullscreenLeft, mStableFullscreenTop;
416 int mStableFullscreenRight, mStableFullscreenBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800417 // During layout, the current screen borders with all outer decoration
418 // (status bar, input method dock) accounted for.
419 int mCurLeft, mCurTop, mCurRight, mCurBottom;
420 // During layout, the frame in which content should be displayed
421 // to the user, accounting for all screen decoration except for any
422 // space they deem as available for other content. This is usually
423 // the same as mCur*, but may be larger if the screen decor has supplied
424 // content insets.
425 int mContentLeft, mContentTop, mContentRight, mContentBottom;
Dianne Hackborne30e02f2014-05-27 18:24:45 -0700426 // During layout, the frame in which voice content should be displayed
427 // to the user, accounting for all screen decoration except for any
428 // space they deem as available for other content.
429 int mVoiceContentLeft, mVoiceContentTop, mVoiceContentRight, mVoiceContentBottom;
Dianne Hackborn8e11ef02010-11-18 19:47:42 -0800430 // During layout, the current screen borders along which input method
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800431 // windows are placed.
432 int mDockLeft, mDockTop, mDockRight, mDockBottom;
433 // During layout, the layer at which the doc window is placed.
434 int mDockLayer;
Dianne Hackborn5c58de32012-04-28 19:52:37 -0700435 // During layout, this is the layer of the status bar.
436 int mStatusBarLayer;
Dianne Hackborne26ab702011-10-16 13:21:33 -0700437 int mLastSystemUiFlags;
438 // Bits that we are in the process of clearing, so we want to prevent
439 // them from being set by applications until everything has been updated
440 // to have them clear.
441 int mResettingSystemUiFlags = 0;
442 // Bits that we are currently always keeping cleared.
443 int mForceClearedSystemUiFlags = 0;
Dianne Hackborn4eff8d32011-11-10 19:38:40 -0800444 // What we last reported to system UI about whether the compatibility
445 // menu needs to be displayed.
446 boolean mLastFocusNeedsMenu = false;
Dianne Hackborndf89e652011-10-06 22:35:11 -0700447
448 FakeWindow mHideNavFakeWindow = null;
449
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800450 static final Rect mTmpParentFrame = new Rect();
451 static final Rect mTmpDisplayFrame = new Rect();
Dianne Hackbornc4aad012013-02-22 15:05:25 -0800452 static final Rect mTmpOverscanFrame = new Rect();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800453 static final Rect mTmpContentFrame = new Rect();
454 static final Rect mTmpVisibleFrame = new Rect();
John Spurlock46646232013-09-30 22:32:42 -0400455 static final Rect mTmpDecorFrame = new Rect();
Adrian Roosfa104232014-06-20 16:10:14 -0700456 static final Rect mTmpStableFrame = new Rect();
Dianne Hackborn1f903c32011-09-13 19:18:06 -0700457 static final Rect mTmpNavigationFrame = new Rect();
Craig Mautner967212c2013-04-13 21:10:58 -0700458
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800459 WindowState mTopFullscreenOpaqueWindowState;
Craig Mautner2bc789b2014-03-19 19:48:38 -0700460 HashSet<IApplicationToken> mAppsToBeHidden = new HashSet<IApplicationToken>();
Jorim Jaggic13fcac2014-09-11 17:36:57 +0200461 HashSet<IApplicationToken> mAppsThatDismissKeyguard = new HashSet<IApplicationToken>();
Joe Onorato93056472010-09-10 10:30:46 -0400462 boolean mTopIsFullscreen;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800463 boolean mForceStatusBar;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -0700464 boolean mForceStatusBarFromKeyguard;
Dianne Hackborn39c2d712009-09-22 11:41:31 -0700465 boolean mHideLockScreen;
Dianne Hackborn891d3fb2013-01-09 18:31:37 -0800466 boolean mForcingShowNavBar;
467 int mForcingShowNavBarLayer;
Craig Mautnerad09bcc2012-10-08 13:33:11 -0700468
469 // States of keyguard dismiss.
470 private static final int DISMISS_KEYGUARD_NONE = 0; // Keyguard not being dismissed.
471 private static final int DISMISS_KEYGUARD_START = 1; // Keyguard needs to be dismissed.
472 private static final int DISMISS_KEYGUARD_CONTINUE = 2; // Keyguard has been dismissed.
473 int mDismissKeyguard = DISMISS_KEYGUARD_NONE;
474
475 /** The window that is currently dismissing the keyguard. Dismissing the keyguard must only
476 * be done once per window. */
477 private WindowState mWinDismissingKeyguard;
478
Craig Mautnerc9457fa2014-06-06 14:27:48 -0700479 /** The window that is currently showing "over" the keyguard. If there is an app window
480 * belonging to another app on top of this the keyguard shows. If there is a fullscreen
481 * app window under this, still dismiss the keyguard but don't show the app underneath. Show
482 * the wallpaper. */
483 private WindowState mWinShowWhenLocked;
484
Dianne Hackborn7ad44382012-10-18 17:46:00 -0700485 boolean mShowingLockscreen;
486 boolean mShowingDream;
487 boolean mDreamingLockscreen;
Jim Millerab954542014-10-10 18:21:49 -0700488 boolean mKeyguardSecure;
489 boolean mKeyguardSecureIncludingHidden;
490 volatile boolean mKeyguardOccluded;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800491 boolean mHomePressed;
Jeff Browncaca8812013-05-09 13:34:33 -0700492 boolean mHomeConsumed;
493 boolean mHomeDoubleTapPending;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800494 Intent mHomeIntent;
Dianne Hackborn39c2d712009-09-22 11:41:31 -0700495 Intent mCarDockIntent;
496 Intent mDeskDockIntent;
Jeff Brownfd23e3e2012-05-09 13:34:28 -0700497 boolean mSearchKeyShortcutPending;
498 boolean mConsumeSearchKeyUp;
Jeff Brownde7a8ea2012-06-13 18:28:57 -0700499 boolean mAssistKeyLongPressed;
Michael Wright6a62e552014-06-03 19:19:48 -0700500 boolean mPendingMetaAction;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800501
Mike Lockwood28569302010-01-28 11:54:40 -0500502 // support for activating the lock screen while the screen is on
503 boolean mAllowLockscreenWhenOn;
504 int mLockScreenTimeout;
505 boolean mLockScreenTimerActive;
506
David Brownbaf8d092010-03-08 21:52:59 -0800507 // Behavior of ENDCALL Button. (See Settings.System.END_BUTTON_BEHAVIOR.)
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800508 int mEndcallBehavior;
David Brownbaf8d092010-03-08 21:52:59 -0800509
510 // Behavior of POWER button while in-call and screen on.
511 // (See Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR.)
512 int mIncallPowerBehavior;
513
Dianne Hackbornf87d1962012-04-04 12:48:24 -0700514 Display mDisplay;
515
Dianne Hackborn9d132642011-04-21 17:26:39 -0700516 int mLandscapeRotation = 0; // default landscape rotation
517 int mSeascapeRotation = 0; // "other" landscape rotation, 180 degrees from mLandscapeRotation
518 int mPortraitRotation = 0; // default portrait rotation
519 int mUpsideDownRotation = 0; // "other" portrait rotation
Mitsuru Oshima831d0d92009-06-16 18:27:18 -0700520
Dianne Hackbornc652de82013-02-15 16:32:56 -0800521 int mOverscanLeft = 0;
522 int mOverscanTop = 0;
523 int mOverscanRight = 0;
524 int mOverscanBottom = 0;
525
Joe Onorato46b0d682010-11-22 17:37:27 -0800526 // What we do when the user long presses on home
Jeff Browncaca8812013-05-09 13:34:33 -0700527 private int mLongPressOnHomeBehavior;
528
529 // What we do when the user double-taps on home
530 private int mDoubleTapOnHomeBehavior;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800531
Bryce Lee584a4452014-10-21 15:55:55 -0700532 // Allowed theater mode wake actions
533 private boolean mAllowTheaterModeWakeFromKey;
534 private boolean mAllowTheaterModeWakeFromPowerKey;
535 private boolean mAllowTheaterModeWakeFromMotion;
Bryce Lee812d7022014-11-10 13:33:28 -0800536 private boolean mAllowTheaterModeWakeFromMotionWhenNotDreaming;
Bryce Lee584a4452014-10-21 15:55:55 -0700537 private boolean mAllowTheaterModeWakeFromCameraLens;
538 private boolean mAllowTheaterModeWakeFromLidSwitch;
539 private boolean mAllowTheaterModeWakeFromWakeGesture;
540
Bryce Lee55e846d2014-11-04 12:43:44 -0800541 // Whether to go to sleep entering theater mode from power button
542 private boolean mGoToSleepOnButtonPressTheaterMode;
543
Winson Chung9112ec32011-06-27 13:15:32 -0700544 // Screenshot trigger states
Jeff Brownd5bb82d2011-10-12 13:57:59 -0700545 // Time to volume and power must be pressed within this interval of each other.
546 private static final long SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS = 150;
Winson Chung1cea2f32012-10-08 20:42:01 -0700547 // Increase the chord delay when taking a screenshot from the keyguard
548 private static final float KEYGUARD_SCREENSHOT_CHORD_DELAY_MULTIPLIER = 2.5f;
Christopher Tatee90585f2012-03-05 18:56:25 -0800549 private boolean mScreenshotChordEnabled;
Jeff Brown13f00f02014-10-31 14:45:50 -0700550 private boolean mScreenshotChordVolumeDownKeyTriggered;
551 private long mScreenshotChordVolumeDownKeyTime;
552 private boolean mScreenshotChordVolumeDownKeyConsumed;
553 private boolean mScreenshotChordVolumeUpKeyTriggered;
554 private boolean mScreenshotChordPowerKeyTriggered;
555 private long mScreenshotChordPowerKeyTime;
Winson Chung9112ec32011-06-27 13:15:32 -0700556
Michael Wrightb854e242013-02-05 17:54:02 -0800557 /* The number of steps between min and max brightness */
558 private static final int BRIGHTNESS_STEPS = 10;
559
Christopher Tate5e08af02012-09-21 17:17:22 -0700560 SettingsObserver mSettingsObserver;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800561 ShortcutManager mShortcutManager;
562 PowerManager.WakeLock mBroadcastWakeLock;
Jeff Brown13f00f02014-10-31 14:45:50 -0700563 PowerManager.WakeLock mPowerKeyWakeLock;
Jeff Brown40013652012-05-16 21:22:36 -0700564 boolean mHavePendingMediaKeyRepeatWithWakeLock;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800565
Craig Mautnerd625ab22013-09-06 13:40:31 -0700566 private int mCurrentUserId;
567
Justin Kohd378ad72013-04-01 12:18:26 -0700568 // Maps global key codes to the components that will handle them.
569 private GlobalKeyManager mGlobalKeyManager;
570
Jeff Brownfd23e3e2012-05-09 13:34:28 -0700571 // Fallback actions by key code.
572 private final SparseArray<KeyCharacterMap.FallbackAction> mFallbackActions =
573 new SparseArray<KeyCharacterMap.FallbackAction>();
Jeff Brown49ed71d2010-12-06 17:13:33 -0800574
Jorim Jaggi76a16232014-08-08 17:00:47 +0200575 private final LogDecelerateInterpolator mLogDecelerateInterpolator
576 = new LogDecelerateInterpolator(100, 0);
577
Jeff Brown70825162012-03-28 17:27:48 -0700578 private static final int MSG_ENABLE_POINTER_LOCATION = 1;
579 private static final int MSG_DISABLE_POINTER_LOCATION = 2;
Jeff Brown40013652012-05-16 21:22:36 -0700580 private static final int MSG_DISPATCH_MEDIA_KEY_WITH_WAKE_LOCK = 3;
581 private static final int MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK = 4;
Craig Mautner8a0da012014-05-31 15:13:37 -0700582 private static final int MSG_KEYGUARD_DRAWN_COMPLETE = 5;
583 private static final int MSG_KEYGUARD_DRAWN_TIMEOUT = 6;
584 private static final int MSG_WINDOW_MANAGER_DRAWN_COMPLETE = 7;
Craig Mautner84984fa2014-06-19 11:19:20 -0700585 private static final int MSG_DISPATCH_SHOW_RECENTS = 9;
Alan Viverettee34560b22014-07-10 14:50:06 -0700586 private static final int MSG_DISPATCH_SHOW_GLOBAL_ACTIONS = 10;
Craig Mautnera631d492014-08-05 15:16:01 -0700587 private static final int MSG_HIDE_BOOT_MESSAGE = 11;
Michael Wright869a67c2014-08-26 19:33:06 -0700588 private static final int MSG_LAUNCH_VOICE_ASSIST_WITH_WAKE_LOCK = 12;
Jeff Brown13f00f02014-10-31 14:45:50 -0700589 private static final int MSG_POWER_DELAYED_PRESS = 13;
590 private static final int MSG_POWER_LONG_PRESS = 14;
Jeff Brown70825162012-03-28 17:27:48 -0700591
592 private class PolicyHandler extends Handler {
593 @Override
594 public void handleMessage(Message msg) {
595 switch (msg.what) {
596 case MSG_ENABLE_POINTER_LOCATION:
597 enablePointerLocation();
598 break;
599 case MSG_DISABLE_POINTER_LOCATION:
600 disablePointerLocation();
601 break;
Jeff Brown40013652012-05-16 21:22:36 -0700602 case MSG_DISPATCH_MEDIA_KEY_WITH_WAKE_LOCK:
603 dispatchMediaKeyWithWakeLock((KeyEvent)msg.obj);
604 break;
605 case MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK:
606 dispatchMediaKeyRepeatWithWakeLock((KeyEvent)msg.obj);
607 break;
Craig Mautner84984fa2014-06-19 11:19:20 -0700608 case MSG_DISPATCH_SHOW_RECENTS:
609 showRecentApps(false);
610 break;
Alan Viverettee34560b22014-07-10 14:50:06 -0700611 case MSG_DISPATCH_SHOW_GLOBAL_ACTIONS:
612 showGlobalActionsInternal();
613 break;
Craig Mautner8a0da012014-05-31 15:13:37 -0700614 case MSG_KEYGUARD_DRAWN_COMPLETE:
615 if (DEBUG_WAKEUP) Slog.w(TAG, "Setting mKeyguardDrawComplete");
Jeff Brown36c4db82014-09-19 12:05:31 -0700616 finishKeyguardDrawn();
Craig Mautner8a0da012014-05-31 15:13:37 -0700617 break;
618 case MSG_KEYGUARD_DRAWN_TIMEOUT:
619 Slog.w(TAG, "Keyguard drawn timeout. Setting mKeyguardDrawComplete");
Jeff Brown36c4db82014-09-19 12:05:31 -0700620 finishKeyguardDrawn();
Craig Mautner8a0da012014-05-31 15:13:37 -0700621 break;
622 case MSG_WINDOW_MANAGER_DRAWN_COMPLETE:
623 if (DEBUG_WAKEUP) Slog.w(TAG, "Setting mWindowManagerDrawComplete");
Jeff Brown36c4db82014-09-19 12:05:31 -0700624 finishWindowsDrawn();
Craig Mautner8a0da012014-05-31 15:13:37 -0700625 break;
Craig Mautnera631d492014-08-05 15:16:01 -0700626 case MSG_HIDE_BOOT_MESSAGE:
627 handleHideBootMessage();
628 break;
Michael Wright869a67c2014-08-26 19:33:06 -0700629 case MSG_LAUNCH_VOICE_ASSIST_WITH_WAKE_LOCK:
630 launchVoiceAssistWithWakeLock(msg.arg1 != 0);
631 break;
Jeff Brown13f00f02014-10-31 14:45:50 -0700632 case MSG_POWER_DELAYED_PRESS:
633 powerPress((Long)msg.obj, msg.arg1 != 0, msg.arg2);
634 finishPowerKeyPress();
635 break;
636 case MSG_POWER_LONG_PRESS:
637 powerLongPress();
638 break;
Jeff Brown70825162012-03-28 17:27:48 -0700639 }
640 }
641 }
642
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -0800643 private UEventObserver mHDMIObserver = new UEventObserver() {
644 @Override
645 public void onUEvent(UEventObserver.UEvent event) {
646 setHdmiPlugged("1".equals(event.get("SWITCH_STATE")));
647 }
648 };
649
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800650 class SettingsObserver extends ContentObserver {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800651 SettingsObserver(Handler handler) {
652 super(handler);
653 }
David Brownbaf8d092010-03-08 21:52:59 -0800654
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800655 void observe() {
Christopher Tate5e08af02012-09-21 17:17:22 -0700656 // Observe all users' changes
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800657 ContentResolver resolver = mContext.getContentResolver();
658 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700659 Settings.System.END_BUTTON_BEHAVIOR), false, this,
660 UserHandle.USER_ALL);
David Brownbaf8d092010-03-08 21:52:59 -0800661 resolver.registerContentObserver(Settings.Secure.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700662 Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR), false, this,
663 UserHandle.USER_ALL);
Jeff Browna20dda42014-05-27 20:57:24 -0700664 resolver.registerContentObserver(Settings.Secure.getUriFor(
665 Settings.Secure.WAKE_GESTURE_ENABLED), false, this,
666 UserHandle.USER_ALL);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800667 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700668 Settings.System.ACCELEROMETER_ROTATION), false, this,
669 UserHandle.USER_ALL);
Mike Lockwood28569302010-01-28 11:54:40 -0500670 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700671 Settings.System.USER_ROTATION), false, this,
672 UserHandle.USER_ALL);
Daniel Sandlerb73617d2010-08-17 00:41:00 -0400673 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700674 Settings.System.SCREEN_OFF_TIMEOUT), false, this,
675 UserHandle.USER_ALL);
Dianne Hackbornc777e072010-02-12 13:07:59 -0800676 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700677 Settings.System.POINTER_LOCATION), false, this,
678 UserHandle.USER_ALL);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800679 resolver.registerContentObserver(Settings.Secure.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700680 Settings.Secure.DEFAULT_INPUT_METHOD), false, this,
681 UserHandle.USER_ALL);
John Spurlockd9b70bd2014-02-06 17:02:44 -0500682 resolver.registerContentObserver(Settings.Secure.getUriFor(
John Spurlockf1a36642013-10-12 17:50:42 -0400683 Settings.Secure.IMMERSIVE_MODE_CONFIRMATIONS), false, this,
Christopher Tate5e08af02012-09-21 17:17:22 -0700684 UserHandle.USER_ALL);
John Spurlockc6d1c602014-01-17 15:22:06 -0500685 resolver.registerContentObserver(Settings.Global.getUriFor(
686 Settings.Global.POLICY_CONTROL), false, this,
687 UserHandle.USER_ALL);
Dianne Hackbornc777e072010-02-12 13:07:59 -0800688 updateSettings();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800689 }
690
691 @Override public void onChange(boolean selfChange) {
Dianne Hackbornc777e072010-02-12 13:07:59 -0800692 updateSettings();
Jeff Brown01a98dd2011-09-20 15:08:29 -0700693 updateRotation(false);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800694 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800695 }
Craig Mautner967212c2013-04-13 21:10:58 -0700696
Jeff Browna20dda42014-05-27 20:57:24 -0700697 class MyWakeGestureListener extends WakeGestureListener {
698 MyWakeGestureListener(Context context, Handler handler) {
699 super(context, handler);
700 }
701
702 @Override
703 public void onWakeUp() {
704 synchronized (mLock) {
705 if (shouldEnableWakeGestureLp()) {
Jeff Browne07b94b2014-06-18 15:56:27 -0700706 performHapticFeedbackLw(null, HapticFeedbackConstants.VIRTUAL_KEY, false);
Bryce Lee584a4452014-10-21 15:55:55 -0700707 wakeUp(SystemClock.uptimeMillis(), mAllowTheaterModeWakeFromWakeGesture);
Jeff Browna20dda42014-05-27 20:57:24 -0700708 }
709 }
710 }
711 }
712
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800713 class MyOrientationListener extends WindowOrientationListener {
Craig Mautnereee29c42013-01-17 14:44:34 -0800714 MyOrientationListener(Context context, Handler handler) {
715 super(context, handler);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800716 }
Craig Mautner967212c2013-04-13 21:10:58 -0700717
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800718 @Override
Jeff Brownc0347aa2011-09-23 17:26:09 -0700719 public void onProposedRotationChanged(int rotation) {
Craig Mautnereda67292013-04-28 13:50:14 -0700720 if (localLOGV) Slog.v(TAG, "onProposedRotationChanged, rotation=" + rotation);
Jeff Brown01a98dd2011-09-20 15:08:29 -0700721 updateRotation(false);
722 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800723 }
724 MyOrientationListener mOrientationListener;
725
John Spurlock27735a42013-08-14 17:57:38 -0400726 private final BarController mStatusBarController = new BarController("StatusBar",
John Spurlock5b9145b2013-08-20 15:13:47 -0400727 View.STATUS_BAR_TRANSIENT,
728 View.STATUS_BAR_UNHIDE,
John Spurlockbd957402013-10-03 11:38:39 -0400729 View.STATUS_BAR_TRANSLUCENT,
730 StatusBarManager.WINDOW_STATUS_BAR,
731 WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
John Spurlock5b9145b2013-08-20 15:13:47 -0400732
John Spurlock27735a42013-08-14 17:57:38 -0400733 private final BarController mNavigationBarController = new BarController("NavigationBar",
John Spurlock5b9145b2013-08-20 15:13:47 -0400734 View.NAVIGATION_BAR_TRANSIENT,
735 View.NAVIGATION_BAR_UNHIDE,
John Spurlockbd957402013-10-03 11:38:39 -0400736 View.NAVIGATION_BAR_TRANSLUCENT,
737 StatusBarManager.WINDOW_NAVIGATION_BAR,
738 WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION);
John Spurlock5b9145b2013-08-20 15:13:47 -0400739
John Spurlockf1a36642013-10-12 17:50:42 -0400740 private ImmersiveModeConfirmation mImmersiveModeConfirmation;
John Spurlock32beb2c2013-03-11 10:16:47 -0400741
Craig Mautner037aa8d2013-06-07 10:35:44 -0700742 private SystemGesturesPointerEventListener mSystemGestures;
John Spurlock32beb2c2013-03-11 10:16:47 -0400743
Dianne Hackborn42e620c2012-06-24 13:20:51 -0700744 IStatusBarService getStatusBarService() {
745 synchronized (mServiceAquireLock) {
746 if (mStatusBarService == null) {
747 mStatusBarService = IStatusBarService.Stub.asInterface(
748 ServiceManager.getService("statusbar"));
749 }
750 return mStatusBarService;
751 }
752 }
753
Suchi Amalapurapua9e1b162009-03-24 22:24:47 -0700754 /*
755 * We always let the sensor be switched on by default except when
756 * the user has explicitly disabled sensor based rotation or when the
757 * screen is switched off.
758 */
The Android Open Source Project0727d222009-03-11 12:11:58 -0700759 boolean needSensorRunningLp() {
Jeff Brownbcdfc622014-03-06 19:13:04 -0800760 if (mSupportAutoRotation) {
761 if (mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR
762 || mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_FULL_SENSOR
763 || mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT
764 || mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE) {
765 // If the application has explicitly requested to follow the
766 // orientation, then we need to turn the sensor on.
767 return true;
768 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800769 }
Dianne Hackborn867ab6472010-04-29 13:28:56 -0700770 if ((mCarDockEnablesAccelerometer && mDockMode == Intent.EXTRA_DOCK_STATE_CAR) ||
Jeff Brown1a693182011-11-08 14:44:16 -0800771 (mDeskDockEnablesAccelerometer && (mDockMode == Intent.EXTRA_DOCK_STATE_DESK
772 || mDockMode == Intent.EXTRA_DOCK_STATE_LE_DESK
773 || mDockMode == Intent.EXTRA_DOCK_STATE_HE_DESK))) {
Mike Lockwoode9867d22009-09-20 01:59:02 -0400774 // enable accelerometer if we are docked in a dock that enables accelerometer
775 // orientation management,
776 return true;
777 }
Jeff Brown207673cd2012-06-05 17:47:11 -0700778 if (mUserRotationMode == USER_ROTATION_LOCKED) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800779 // If the setting for using the sensor by default is enabled, then
780 // we will always leave it on. Note that the user could go to
781 // a window that forces an orientation that does not use the
782 // sensor and in theory we could turn it off... however, when next
783 // turning it on we won't have a good value for the current
784 // orientation for a little bit, which can cause orientation
785 // changes to lag, so we'd like to keep it always on. (It will
786 // still be turned off when the screen is off.)
Suchi Amalapurapua9e1b162009-03-24 22:24:47 -0700787 return false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800788 }
Jeff Brownbcdfc622014-03-06 19:13:04 -0800789 return mSupportAutoRotation;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800790 }
Craig Mautner46ac6fa2013-08-01 10:06:34 -0700791
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800792 /*
793 * Various use cases for invoking this function
794 * screen turning off, should always disable listeners if already enabled
Craig Mautner46ac6fa2013-08-01 10:06:34 -0700795 * screen turned on and current app has sensor based orientation, enable listeners
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800796 * if not already enabled
797 * screen turned on and current app does not have sensor orientation, disable listeners if
798 * already enabled
799 * screen turning on and current app has sensor based orientation, enable listeners if needed
800 * screen turning on and current app has nosensor based orientation, do nothing
801 */
The Android Open Source Project0727d222009-03-11 12:11:58 -0700802 void updateOrientationListenerLp() {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800803 if (!mOrientationListener.canDetectOrientation()) {
804 // If sensor is turned off or nonexistent for some reason
805 return;
806 }
807 //Could have been invoked due to screen turning on or off or
808 //change of the currently visible window's orientation
Jeff Brown3ee549c2014-09-22 20:14:39 -0700809 if (localLOGV) Slog.v(TAG, "mScreenOnEarly=" + mScreenOnEarly
810 + ", mAwake=" + mAwake + ", mCurrentAppOrientation=" + mCurrentAppOrientation
811 + ", mOrientationSensorEnabled=" + mOrientationSensorEnabled);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800812 boolean disable = true;
Jeff Brown3ee549c2014-09-22 20:14:39 -0700813 if (mScreenOnEarly && mAwake) {
The Android Open Source Project0727d222009-03-11 12:11:58 -0700814 if (needSensorRunningLp()) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800815 disable = false;
816 //enable listener if not already enabled
The Android Open Source Project0727d222009-03-11 12:11:58 -0700817 if (!mOrientationSensorEnabled) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800818 mOrientationListener.enable();
Craig Mautnereda67292013-04-28 13:50:14 -0700819 if(localLOGV) Slog.v(TAG, "Enabling listeners");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800820 mOrientationSensorEnabled = true;
821 }
Craig Mautner46ac6fa2013-08-01 10:06:34 -0700822 }
823 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800824 //check if sensors need to be disabled
The Android Open Source Project0727d222009-03-11 12:11:58 -0700825 if (disable && mOrientationSensorEnabled) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800826 mOrientationListener.disable();
Craig Mautnereda67292013-04-28 13:50:14 -0700827 if(localLOGV) Slog.v(TAG, "Disabling listeners");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800828 mOrientationSensorEnabled = false;
829 }
830 }
831
Jeff Brown13f00f02014-10-31 14:45:50 -0700832 private void interceptPowerKeyDown(KeyEvent event, boolean interactive) {
833 // Hold a wake lock until the power key is released.
834 if (!mPowerKeyWakeLock.isHeld()) {
835 mPowerKeyWakeLock.acquire();
836 }
837
838 // Cancel multi-press detection timeout.
839 if (mPowerKeyPressCounter != 0) {
840 mHandler.removeMessages(MSG_POWER_DELAYED_PRESS);
841 }
842
843 // Detect user pressing the power button in panic when an application has
844 // taken over the whole screen.
845 boolean panic = mImmersiveModeConfirmation.onPowerKeyDown(interactive,
Craig Mautner0124980e92014-11-30 21:15:34 -0800846 SystemClock.elapsedRealtime(), isImmersiveMode(mLastSystemUiFlags));
Jeff Brown13f00f02014-10-31 14:45:50 -0700847 if (panic) {
848 mHandler.post(mRequestTransientNav);
849 }
850
851 // Latch power key state to detect screenshot chord.
852 if (interactive && !mScreenshotChordPowerKeyTriggered
853 && (event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
854 mScreenshotChordPowerKeyTriggered = true;
855 mScreenshotChordPowerKeyTime = event.getDownTime();
856 interceptScreenshotChord();
857 }
858
859 // Stop ringing or end call if configured to do so when power is pressed.
860 TelecomManager telecomManager = getTelecommService();
861 boolean hungUp = false;
862 if (telecomManager != null) {
863 if (telecomManager.isRinging()) {
864 // Pressing Power while there's a ringing incoming
865 // call should silence the ringer.
866 telecomManager.silenceRinger();
867 } else if ((mIncallPowerBehavior
868 & Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR_HANGUP) != 0
869 && telecomManager.isInCall() && interactive) {
870 // Otherwise, if "Power button ends call" is enabled,
871 // the Power button will hang up any current active call.
872 hungUp = telecomManager.endCall();
873 }
874 }
875
876 // If the power key has still not yet been handled, then detect short
877 // press, long press, or multi press and decide what to do.
878 mPowerKeyHandled = hungUp || mScreenshotChordVolumeDownKeyTriggered
879 || mScreenshotChordVolumeUpKeyTriggered;
880 if (!mPowerKeyHandled) {
881 if (interactive) {
882 // When interactive, we're already awake.
883 // Wait for a long press or for the button to be released to decide what to do.
884 if (hasLongPressOnPowerBehavior()) {
885 Message msg = mHandler.obtainMessage(MSG_POWER_LONG_PRESS);
886 msg.setAsynchronous(true);
887 mHandler.sendMessageDelayed(msg,
888 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
889 }
890 } else {
Bryce Leed9268e32014-11-17 17:40:59 -0800891 wakeUpFromPowerKey(event.getDownTime());
Jeff Brown13f00f02014-10-31 14:45:50 -0700892 final int maxCount = getMaxMultiPressPowerCount();
Bryce Leed9268e32014-11-17 17:40:59 -0800893
Jeff Brown13f00f02014-10-31 14:45:50 -0700894 if (maxCount <= 1) {
Jeff Brown13f00f02014-10-31 14:45:50 -0700895 mPowerKeyHandled = true;
Bryce Leed9268e32014-11-17 17:40:59 -0800896 } else {
897 mBeganFromNonInteractive = true;
Jeff Brown13f00f02014-10-31 14:45:50 -0700898 }
899 }
Jeff Brown4d396052010-10-29 21:50:21 -0700900 }
901 }
902
Jeff Brown13f00f02014-10-31 14:45:50 -0700903 private void interceptPowerKeyUp(KeyEvent event, boolean interactive, boolean canceled) {
904 final boolean handled = canceled || mPowerKeyHandled;
905 mScreenshotChordPowerKeyTriggered = false;
906 cancelPendingScreenshotChordAction();
907 cancelPendingPowerKeyAction();
908
909 if (!handled) {
910 // Figure out how to handle the key now that it has been released.
911 mPowerKeyPressCounter += 1;
912
913 final int maxCount = getMaxMultiPressPowerCount();
914 final long eventTime = event.getDownTime();
915 if (mPowerKeyPressCounter < maxCount) {
916 // This could be a multi-press. Wait a little bit longer to confirm.
917 // Continue holding the wake lock.
918 Message msg = mHandler.obtainMessage(MSG_POWER_DELAYED_PRESS,
919 interactive ? 1 : 0, mPowerKeyPressCounter, eventTime);
920 msg.setAsynchronous(true);
921 mHandler.sendMessageDelayed(msg, ViewConfiguration.getDoubleTapTimeout());
922 return;
923 }
924
925 // No other actions. Handle it immediately.
926 powerPress(eventTime, interactive, mPowerKeyPressCounter);
Jeff Brown4d396052010-10-29 21:50:21 -0700927 }
Jeff Brown13f00f02014-10-31 14:45:50 -0700928
929 // Done. Reset our state.
930 finishPowerKeyPress();
931 }
932
933 private void finishPowerKeyPress() {
Bryce Leed9268e32014-11-17 17:40:59 -0800934 mBeganFromNonInteractive = false;
Jeff Brown13f00f02014-10-31 14:45:50 -0700935 mPowerKeyPressCounter = 0;
936 if (mPowerKeyWakeLock.isHeld()) {
937 mPowerKeyWakeLock.release();
938 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -0700939 }
940
941 private void cancelPendingPowerKeyAction() {
942 if (!mPowerKeyHandled) {
Jeff Brown13f00f02014-10-31 14:45:50 -0700943 mPowerKeyHandled = true;
944 mHandler.removeMessages(MSG_POWER_LONG_PRESS);
Jeff Brownd5bb82d2011-10-12 13:57:59 -0700945 }
Jeff Brown13f00f02014-10-31 14:45:50 -0700946 }
947
948 private void powerPress(long eventTime, boolean interactive, int count) {
949 if (mScreenOnEarly && !mScreenOnFully) {
950 Slog.i(TAG, "Suppressed redundant power key press while "
951 + "already in the process of turning the screen on.");
952 return;
Jeff Brownff204712011-10-25 21:27:54 -0700953 }
Jeff Brown13f00f02014-10-31 14:45:50 -0700954
955 if (count == 2) {
956 powerMultiPressAction(eventTime, interactive, mDoublePressOnPowerBehavior);
957 } else if (count == 3) {
958 powerMultiPressAction(eventTime, interactive, mTriplePressOnPowerBehavior);
Bryce Leed9268e32014-11-17 17:40:59 -0800959 } else if (interactive && !mBeganFromNonInteractive) {
Jeff Brown13f00f02014-10-31 14:45:50 -0700960 switch (mShortPressOnPowerBehavior) {
961 case SHORT_PRESS_POWER_NOTHING:
962 break;
963 case SHORT_PRESS_POWER_GO_TO_SLEEP:
964 mPowerManager.goToSleep(eventTime,
965 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON, 0);
966 break;
967 case SHORT_PRESS_POWER_REALLY_GO_TO_SLEEP:
968 mPowerManager.goToSleep(eventTime,
969 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON,
970 PowerManager.GO_TO_SLEEP_FLAG_NO_DOZE);
971 break;
972 case SHORT_PRESS_POWER_REALLY_GO_TO_SLEEP_AND_GO_HOME:
973 mPowerManager.goToSleep(eventTime,
974 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON,
975 PowerManager.GO_TO_SLEEP_FLAG_NO_DOZE);
976 launchHomeFromHotKey();
977 break;
Bryce Lee01b0c5f2015-02-05 18:24:04 -0800978 case SHORT_PRESS_POWER_GO_HOME:
979 launchHomeFromHotKey();
980 break;
Jeff Brown13f00f02014-10-31 14:45:50 -0700981 }
982 }
983 }
984
985 private void powerMultiPressAction(long eventTime, boolean interactive, int behavior) {
986 switch (behavior) {
987 case MULTI_PRESS_POWER_NOTHING:
988 break;
989 case MULTI_PRESS_POWER_THEATER_MODE:
990 if (isTheaterModeEnabled()) {
991 Slog.i(TAG, "Toggling theater mode off.");
992 Settings.Global.putInt(mContext.getContentResolver(),
993 Settings.Global.THEATER_MODE_ON, 0);
994 if (!interactive) {
995 wakeUpFromPowerKey(eventTime);
996 }
997 } else {
998 Slog.i(TAG, "Toggling theater mode on.");
999 Settings.Global.putInt(mContext.getContentResolver(),
1000 Settings.Global.THEATER_MODE_ON, 1);
Bryce Lee55e846d2014-11-04 12:43:44 -08001001
1002 if (mGoToSleepOnButtonPressTheaterMode && interactive) {
Jeff Brown13f00f02014-10-31 14:45:50 -07001003 mPowerManager.goToSleep(eventTime,
1004 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON, 0);
1005 }
1006 }
1007 break;
1008 case MULTI_PRESS_POWER_BRIGHTNESS_BOOST:
Jeff Brown7b5be5e2014-11-12 18:45:31 -08001009 Slog.i(TAG, "Starting brightness boost.");
1010 if (!interactive) {
1011 wakeUpFromPowerKey(eventTime);
1012 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001013 mPowerManager.boostScreenBrightness(eventTime);
1014 break;
1015 }
1016 }
1017
1018 private int getMaxMultiPressPowerCount() {
1019 if (mTriplePressOnPowerBehavior != MULTI_PRESS_POWER_NOTHING) {
1020 return 3;
1021 }
1022 if (mDoublePressOnPowerBehavior != MULTI_PRESS_POWER_NOTHING) {
1023 return 2;
1024 }
1025 return 1;
1026 }
1027
1028 private void powerLongPress() {
1029 final int behavior = getResolvedLongPressOnPowerBehavior();
1030 switch (behavior) {
1031 case LONG_PRESS_POWER_NOTHING:
1032 break;
1033 case LONG_PRESS_POWER_GLOBAL_ACTIONS:
1034 mPowerKeyHandled = true;
1035 if (!performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false)) {
1036 performAuditoryFeedbackForAccessibilityIfNeed();
1037 }
1038 showGlobalActionsInternal();
1039 break;
1040 case LONG_PRESS_POWER_SHUT_OFF:
1041 case LONG_PRESS_POWER_SHUT_OFF_NO_CONFIRM:
1042 mPowerKeyHandled = true;
1043 performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false);
1044 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_GLOBAL_ACTIONS);
1045 mWindowManagerFuncs.shutdown(behavior == LONG_PRESS_POWER_SHUT_OFF);
1046 break;
1047 }
1048 }
1049
1050 private int getResolvedLongPressOnPowerBehavior() {
1051 if (FactoryTest.isLongPressOnPowerOffEnabled()) {
1052 return LONG_PRESS_POWER_SHUT_OFF_NO_CONFIRM;
1053 }
1054 return mLongPressOnPowerBehavior;
1055 }
1056
1057 private boolean hasLongPressOnPowerBehavior() {
1058 return getResolvedLongPressOnPowerBehavior() != LONG_PRESS_POWER_NOTHING;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001059 }
1060
1061 private void interceptScreenshotChord() {
Christopher Tatee90585f2012-03-05 18:56:25 -08001062 if (mScreenshotChordEnabled
Jeff Brown13f00f02014-10-31 14:45:50 -07001063 && mScreenshotChordVolumeDownKeyTriggered && mScreenshotChordPowerKeyTriggered
1064 && !mScreenshotChordVolumeUpKeyTriggered) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001065 final long now = SystemClock.uptimeMillis();
Jeff Brown13f00f02014-10-31 14:45:50 -07001066 if (now <= mScreenshotChordVolumeDownKeyTime + SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS
1067 && now <= mScreenshotChordPowerKeyTime
1068 + SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS) {
1069 mScreenshotChordVolumeDownKeyConsumed = true;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001070 cancelPendingPowerKeyAction();
1071
Jeff Sharkey2991fa32012-12-05 18:06:43 -08001072 mHandler.postDelayed(mScreenshotRunnable, getScreenshotChordLongPressDelay());
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001073 }
1074 }
1075 }
1076
Winson Chung1cea2f32012-10-08 20:42:01 -07001077 private long getScreenshotChordLongPressDelay() {
Jim Miller5ecd8112013-01-09 18:50:26 -08001078 if (mKeyguardDelegate.isShowing()) {
Winson Chung1cea2f32012-10-08 20:42:01 -07001079 // Double the time it takes to take a screenshot from the keyguard
1080 return (long) (KEYGUARD_SCREENSHOT_CHORD_DELAY_MULTIPLIER *
Justin Kohfeabd2c2014-05-02 10:02:44 -07001081 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
Winson Chung1cea2f32012-10-08 20:42:01 -07001082 }
Justin Kohfeabd2c2014-05-02 10:02:44 -07001083 return ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout();
Winson Chung1cea2f32012-10-08 20:42:01 -07001084 }
1085
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001086 private void cancelPendingScreenshotChordAction() {
Jeff Sharkey2991fa32012-12-05 18:06:43 -08001087 mHandler.removeCallbacks(mScreenshotRunnable);
Jeff Brown4d396052010-10-29 21:50:21 -07001088 }
1089
Jeff Brown13f00f02014-10-31 14:45:50 -07001090 private final Runnable mEndCallLongPress = new Runnable() {
Craig Mautnerf1b67412012-09-19 13:18:29 -07001091 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001092 public void run() {
Jeff Brown13f00f02014-10-31 14:45:50 -07001093 mEndCallKeyHandled = true;
1094 if (!performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false)) {
1095 performAuditoryFeedbackForAccessibilityIfNeed();
Joe Onoratod208e702010-10-08 16:22:43 -04001096 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001097 showGlobalActionsInternal();
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001098 }
1099 };
1100
Jeff Sharkey2991fa32012-12-05 18:06:43 -08001101 private final Runnable mScreenshotRunnable = new Runnable() {
Craig Mautner0bf6ec92012-12-18 08:33:27 -08001102 @Override
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001103 public void run() {
1104 takeScreenshot();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001105 }
1106 };
1107
Alan Viverettee34560b22014-07-10 14:50:06 -07001108 @Override
1109 public void showGlobalActions() {
1110 mHandler.removeMessages(MSG_DISPATCH_SHOW_GLOBAL_ACTIONS);
1111 mHandler.sendEmptyMessage(MSG_DISPATCH_SHOW_GLOBAL_ACTIONS);
1112 }
1113
1114 void showGlobalActionsInternal() {
1115 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_GLOBAL_ACTIONS);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001116 if (mGlobalActions == null) {
Jeff Brown7304c342012-05-11 18:42:42 -07001117 mGlobalActions = new GlobalActions(mContext, mWindowManagerFuncs);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001118 }
Jim Millerab954542014-10-10 18:21:49 -07001119 final boolean keyguardShowing = isKeyguardShowingAndNotOccluded();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001120 mGlobalActions.showDialog(keyguardShowing, isDeviceProvisioned());
1121 if (keyguardShowing) {
1122 // since it took two seconds of long press to bring this up,
1123 // poke the wake lock so they have some time to see the dialog.
Jim Miller25190572013-02-28 17:36:24 -08001124 mPowerManager.userActivity(SystemClock.uptimeMillis(), false);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001125 }
1126 }
1127
1128 boolean isDeviceProvisioned() {
Jeff Brownbf6f6f92012-09-25 15:03:20 -07001129 return Settings.Global.getInt(
1130 mContext.getContentResolver(), Settings.Global.DEVICE_PROVISIONED, 0) != 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001131 }
1132
Maurice Lam99c6e072014-04-28 18:24:28 -07001133 boolean isUserSetupComplete() {
1134 return Settings.Secure.getIntForUser(mContext.getContentResolver(),
1135 Settings.Secure.USER_SETUP_COMPLETE, 0, UserHandle.USER_CURRENT) != 0;
1136 }
1137
Jeff Brown13f00f02014-10-31 14:45:50 -07001138 private void handleShortPressOnHome() {
1139 // If there's a dream running then use home to escape the dream
1140 // but don't actually go home.
1141 if (mDreamManagerInternal != null && mDreamManagerInternal.isDreaming()) {
1142 mDreamManagerInternal.stopDream(false /*immediate*/);
1143 return;
1144 }
1145
1146 // Go home!
1147 launchHomeFromHotKey();
1148 }
1149
Patrick Dubroyece94522011-02-23 18:35:01 -08001150 private void handleLongPressOnHome() {
Joe Onorato46b0d682010-11-22 17:37:27 -08001151 if (mLongPressOnHomeBehavior != LONG_PRESS_HOME_NOTHING) {
Jeff Browncaca8812013-05-09 13:34:33 -07001152 mHomeConsumed = true;
Joe Onorato46b0d682010-11-22 17:37:27 -08001153 performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false);
Patrick Dubroyece94522011-02-23 18:35:01 -08001154
Jeff Browncaca8812013-05-09 13:34:33 -07001155 if (mLongPressOnHomeBehavior == LONG_PRESS_HOME_RECENT_SYSTEM_UI) {
1156 toggleRecentApps();
1157 } else if (mLongPressOnHomeBehavior == LONG_PRESS_HOME_ASSIST) {
1158 launchAssistAction();
Jim Millere6ad1a82010-08-20 19:25:39 -07001159 }
1160 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001161 }
Patrick Dubroyece94522011-02-23 18:35:01 -08001162
Jeff Browncaca8812013-05-09 13:34:33 -07001163 private void handleDoubleTapOnHome() {
1164 if (mDoubleTapOnHomeBehavior == DOUBLE_TAP_HOME_RECENT_SYSTEM_UI) {
1165 mHomeConsumed = true;
1166 toggleRecentApps();
1167 }
1168 }
1169
1170 private final Runnable mHomeDoubleTapTimeoutRunnable = new Runnable() {
1171 @Override
1172 public void run() {
1173 if (mHomeDoubleTapPending) {
1174 mHomeDoubleTapPending = false;
Jeff Brown13f00f02014-10-31 14:45:50 -07001175 handleShortPressOnHome();
Jeff Browncaca8812013-05-09 13:34:33 -07001176 }
1177 }
1178 };
1179
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001180 /** {@inheritDoc} */
Craig Mautner0bf6ec92012-12-18 08:33:27 -08001181 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001182 public void init(Context context, IWindowManager windowManager,
Jeff Brown96307042012-07-27 15:51:34 -07001183 WindowManagerFuncs windowManagerFuncs) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001184 mContext = context;
1185 mWindowManager = windowManager;
Dianne Hackborndf89e652011-10-06 22:35:11 -07001186 mWindowManagerFuncs = windowManagerFuncs;
Craig Mautner8a0da012014-05-31 15:13:37 -07001187 mWindowManagerInternal = LocalServices.getService(WindowManagerInternal.class);
Jose Lima9546b202014-07-02 17:21:51 -07001188 mDreamManagerInternal = LocalServices.getService(DreamManagerInternal.class);
Craig Mautner8a0da012014-05-31 15:13:37 -07001189
Jeff Brown70825162012-03-28 17:27:48 -07001190 mHandler = new PolicyHandler();
Jeff Browna20dda42014-05-27 20:57:24 -07001191 mWakeGestureListener = new MyWakeGestureListener(mContext, mHandler);
Craig Mautnereee29c42013-01-17 14:44:34 -08001192 mOrientationListener = new MyOrientationListener(mContext, mHandler);
Jeff Brownc0347aa2011-09-23 17:26:09 -07001193 try {
1194 mOrientationListener.setCurrentRotation(windowManager.getRotation());
1195 } catch (RemoteException ex) { }
Christopher Tate5e08af02012-09-21 17:17:22 -07001196 mSettingsObserver = new SettingsObserver(mHandler);
1197 mSettingsObserver.observe();
Svetoslav683914b2015-01-15 14:22:26 -08001198 mShortcutManager = new ShortcutManager(context);
Daniel Sandler6396c722013-04-16 20:19:09 -04001199 mUiMode = context.getResources().getInteger(
1200 com.android.internal.R.integer.config_defaultUiModeType);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001201 mHomeIntent = new Intent(Intent.ACTION_MAIN, null);
1202 mHomeIntent.addCategory(Intent.CATEGORY_HOME);
1203 mHomeIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1204 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
Dianne Hackborn39c2d712009-09-22 11:41:31 -07001205 mCarDockIntent = new Intent(Intent.ACTION_MAIN, null);
1206 mCarDockIntent.addCategory(Intent.CATEGORY_CAR_DOCK);
1207 mCarDockIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1208 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
1209 mDeskDockIntent = new Intent(Intent.ACTION_MAIN, null);
1210 mDeskDockIntent.addCategory(Intent.CATEGORY_DESK_DOCK);
1211 mDeskDockIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1212 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
Jim Millere6ad1a82010-08-20 19:25:39 -07001213
Jeff Brown96307042012-07-27 15:51:34 -07001214 mPowerManager = (PowerManager)context.getSystemService(Context.POWER_SERVICE);
1215 mBroadcastWakeLock = mPowerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK,
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001216 "PhoneWindowManager.mBroadcastWakeLock");
Jeff Brown13f00f02014-10-31 14:45:50 -07001217 mPowerKeyWakeLock = mPowerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK,
1218 "PhoneWindowManager.mPowerKeyWakeLock");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001219 mEnableShiftMenuBugReports = "1".equals(SystemProperties.get("ro.debuggable"));
Jeff Brownbcdfc622014-03-06 19:13:04 -08001220 mSupportAutoRotation = mContext.getResources().getBoolean(
1221 com.android.internal.R.bool.config_supportAutoRotation);
Dianne Hackborn2862fff2009-09-15 22:56:29 -07001222 mLidOpenRotation = readRotation(
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001223 com.android.internal.R.integer.config_lidOpenRotation);
1224 mCarDockRotation = readRotation(
1225 com.android.internal.R.integer.config_carDockRotation);
1226 mDeskDockRotation = readRotation(
1227 com.android.internal.R.integer.config_deskDockRotation);
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001228 mUndockedHdmiRotation = readRotation(
1229 com.android.internal.R.integer.config_undockedHdmiRotation);
Mike Lockwoode9867d22009-09-20 01:59:02 -04001230 mCarDockEnablesAccelerometer = mContext.getResources().getBoolean(
1231 com.android.internal.R.bool.config_carDockEnablesAccelerometer);
1232 mDeskDockEnablesAccelerometer = mContext.getResources().getBoolean(
1233 com.android.internal.R.bool.config_deskDockEnablesAccelerometer);
Dianne Hackborn2862fff2009-09-15 22:56:29 -07001234 mLidKeyboardAccessibility = mContext.getResources().getInteger(
1235 com.android.internal.R.integer.config_lidKeyboardAccessibility);
1236 mLidNavigationAccessibility = mContext.getResources().getInteger(
1237 com.android.internal.R.integer.config_lidNavigationAccessibility);
Jeff Brownc458ce92012-04-30 14:58:40 -07001238 mLidControlsSleep = mContext.getResources().getBoolean(
1239 com.android.internal.R.bool.config_lidControlsSleep);
Daniel Sandlerdd73ee42013-10-11 22:19:59 -04001240 mTranslucentDecorEnabled = mContext.getResources().getBoolean(
1241 com.android.internal.R.bool.config_enableTranslucentDecor);
Bryce Lee584a4452014-10-21 15:55:55 -07001242
1243 mAllowTheaterModeWakeFromKey = mContext.getResources().getBoolean(
1244 com.android.internal.R.bool.config_allowTheaterModeWakeFromKey);
1245 mAllowTheaterModeWakeFromPowerKey = mAllowTheaterModeWakeFromKey
1246 || mContext.getResources().getBoolean(
1247 com.android.internal.R.bool.config_allowTheaterModeWakeFromPowerKey);
1248 mAllowTheaterModeWakeFromMotion = mContext.getResources().getBoolean(
1249 com.android.internal.R.bool.config_allowTheaterModeWakeFromMotion);
Bryce Lee812d7022014-11-10 13:33:28 -08001250 mAllowTheaterModeWakeFromMotionWhenNotDreaming = mContext.getResources().getBoolean(
1251 com.android.internal.R.bool.config_allowTheaterModeWakeFromMotionWhenNotDreaming);
Bryce Lee584a4452014-10-21 15:55:55 -07001252 mAllowTheaterModeWakeFromCameraLens = mContext.getResources().getBoolean(
1253 com.android.internal.R.bool.config_allowTheaterModeWakeFromCameraLens);
1254 mAllowTheaterModeWakeFromLidSwitch = mContext.getResources().getBoolean(
1255 com.android.internal.R.bool.config_allowTheaterModeWakeFromLidSwitch);
1256 mAllowTheaterModeWakeFromWakeGesture = mContext.getResources().getBoolean(
1257 com.android.internal.R.bool.config_allowTheaterModeWakeFromGesture);
1258
Bryce Lee55e846d2014-11-04 12:43:44 -08001259 mGoToSleepOnButtonPressTheaterMode = mContext.getResources().getBoolean(
1260 com.android.internal.R.bool.config_goToSleepOnButtonPressTheaterMode);
1261
Jeff Brown13f00f02014-10-31 14:45:50 -07001262 mShortPressOnPowerBehavior = mContext.getResources().getInteger(
1263 com.android.internal.R.integer.config_shortPressOnPowerBehavior);
1264 mLongPressOnPowerBehavior = mContext.getResources().getInteger(
1265 com.android.internal.R.integer.config_longPressOnPowerBehavior);
1266 mDoublePressOnPowerBehavior = mContext.getResources().getInteger(
1267 com.android.internal.R.integer.config_doublePressOnPowerBehavior);
1268 mTriplePressOnPowerBehavior = mContext.getResources().getInteger(
1269 com.android.internal.R.integer.config_triplePressOnPowerBehavior);
1270
John Spurlock61560172015-02-06 19:46:04 -05001271 mUseTvRouting = AudioSystem.getPlatformType(mContext) == AudioSystem.PLATFORM_TELEVISION;
RoboErik001c59c2015-01-26 15:53:51 -08001272 mUseMasterVolume = mContext.getResources().getBoolean(
1273 com.android.internal.R.bool.config_useMasterVolume);
1274
Jeff Brownf71343d2013-05-31 17:59:11 -07001275 readConfigurationDependentBehaviors();
Jeff Browncaca8812013-05-09 13:34:33 -07001276
Svetoslav8e3feb12014-02-24 13:46:47 -08001277 mAccessibilityManager = (AccessibilityManager) context.getSystemService(
1278 Context.ACCESSIBILITY_SERVICE);
1279
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001280 // register for dock events
Dianne Hackborn78968392010-03-04 20:47:56 -08001281 IntentFilter filter = new IntentFilter();
1282 filter.addAction(UiModeManager.ACTION_ENTER_CAR_MODE);
1283 filter.addAction(UiModeManager.ACTION_EXIT_CAR_MODE);
1284 filter.addAction(UiModeManager.ACTION_ENTER_DESK_MODE);
1285 filter.addAction(UiModeManager.ACTION_EXIT_DESK_MODE);
Dianne Hackborn867ab6472010-04-29 13:28:56 -07001286 filter.addAction(Intent.ACTION_DOCK_EVENT);
1287 Intent intent = context.registerReceiver(mDockReceiver, filter);
1288 if (intent != null) {
1289 // Retrieve current sticky dock event broadcast.
1290 mDockMode = intent.getIntExtra(Intent.EXTRA_DOCK_STATE,
1291 Intent.EXTRA_DOCK_STATE_UNDOCKED);
1292 }
Daniel Sandler7e37df52011-11-16 22:08:23 -08001293
Jeff Brown6aaf2952012-10-05 16:01:08 -07001294 // register for dream-related broadcasts
1295 filter = new IntentFilter();
1296 filter.addAction(Intent.ACTION_DREAMING_STARTED);
1297 filter.addAction(Intent.ACTION_DREAMING_STOPPED);
1298 context.registerReceiver(mDreamReceiver, filter);
1299
Christopher Tate5e08af02012-09-21 17:17:22 -07001300 // register for multiuser-relevant broadcasts
1301 filter = new IntentFilter(Intent.ACTION_USER_SWITCHED);
1302 context.registerReceiver(mMultiuserReceiver, filter);
1303
John Spurlock57306e62013-04-22 09:48:49 -04001304 // monitor for system gestures
Craig Mautner037aa8d2013-06-07 10:35:44 -07001305 mSystemGestures = new SystemGesturesPointerEventListener(context,
1306 new SystemGesturesPointerEventListener.Callbacks() {
John Spurlock57306e62013-04-22 09:48:49 -04001307 @Override
1308 public void onSwipeFromTop() {
John Spurlock04db1762013-05-13 12:46:41 -04001309 if (mStatusBar != null) {
John Spurlocke1f366f2013-08-05 12:22:40 -04001310 requestTransientBars(mStatusBar);
John Spurlock04db1762013-05-13 12:46:41 -04001311 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04001312 }
1313 @Override
1314 public void onSwipeFromBottom() {
John Spurlock04db1762013-05-13 12:46:41 -04001315 if (mNavigationBar != null && mNavigationBarOnBottom) {
John Spurlocke1f366f2013-08-05 12:22:40 -04001316 requestTransientBars(mNavigationBar);
John Spurlockad3e6cb2013-04-30 08:47:43 -04001317 }
1318 }
1319 @Override
1320 public void onSwipeFromRight() {
John Spurlock04db1762013-05-13 12:46:41 -04001321 if (mNavigationBar != null && !mNavigationBarOnBottom) {
John Spurlocke1f366f2013-08-05 12:22:40 -04001322 requestTransientBars(mNavigationBar);
John Spurlockad3e6cb2013-04-30 08:47:43 -04001323 }
1324 }
1325 @Override
1326 public void onDebug() {
John Spurlockd67ec252013-09-05 11:31:54 -04001327 // no-op
John Spurlockad3e6cb2013-04-30 08:47:43 -04001328 }
1329 });
John Spurlockf1a36642013-10-12 17:50:42 -04001330 mImmersiveModeConfirmation = new ImmersiveModeConfirmation(mContext);
Craig Mautner037aa8d2013-06-07 10:35:44 -07001331 mWindowManagerFuncs.registerPointerEventListener(mSystemGestures);
John Spurlock32beb2c2013-03-11 10:16:47 -04001332
Jeff Brownc2346132012-04-13 01:55:38 -07001333 mVibrator = (Vibrator)context.getSystemService(Context.VIBRATOR_SERVICE);
Dianne Hackbornb1a79802009-09-29 15:18:31 -07001334 mLongPressVibePattern = getLongIntArray(mContext.getResources(),
1335 com.android.internal.R.array.config_longPressVibePattern);
1336 mVirtualKeyVibePattern = getLongIntArray(mContext.getResources(),
1337 com.android.internal.R.array.config_virtualKeyVibePattern);
Amith Yamasanic33cb712010-02-10 15:21:49 -08001338 mKeyboardTapVibePattern = getLongIntArray(mContext.getResources(),
1339 com.android.internal.R.array.config_keyboardTapVibePattern);
Fabrice Di Meglioeeff63a2013-08-05 12:07:24 -07001340 mClockTickVibePattern = getLongIntArray(mContext.getResources(),
1341 com.android.internal.R.array.config_clockTickVibePattern);
Fabrice Di Megliobd9152f2013-10-01 11:21:31 -07001342 mCalendarDateVibePattern = getLongIntArray(mContext.getResources(),
1343 com.android.internal.R.array.config_calendarDateVibePattern);
Dianne Hackbornb1a79802009-09-29 15:18:31 -07001344 mSafeModeDisabledVibePattern = getLongIntArray(mContext.getResources(),
1345 com.android.internal.R.array.config_safeModeDisabledVibePattern);
1346 mSafeModeEnabledVibePattern = getLongIntArray(mContext.getResources(),
1347 com.android.internal.R.array.config_safeModeEnabledVibePattern);
Daniel Sandler40427442010-07-16 11:44:52 -04001348
Christopher Tatee90585f2012-03-05 18:56:25 -08001349 mScreenshotChordEnabled = mContext.getResources().getBoolean(
1350 com.android.internal.R.bool.config_enableScreenshotChord);
1351
Justin Kohd378ad72013-04-01 12:18:26 -07001352 mGlobalKeyManager = new GlobalKeyManager(mContext);
1353
Joe Onoratoea495d42011-04-06 11:41:11 -07001354 // Controls rotation and the like.
1355 initializeHdmiState();
Dianne Hackborn40011092011-09-22 13:37:48 -07001356
1357 // Match current screen state.
Craig Mautnera631d492014-08-05 15:16:01 -07001358 if (!mPowerManager.isInteractive()) {
Jeff Brown140ffc72014-05-01 15:18:00 -07001359 goingToSleep(WindowManagerPolicy.OFF_BECAUSE_OF_USER);
Dianne Hackborn40011092011-09-22 13:37:48 -07001360 }
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001361 }
1362
Jeff Brownf71343d2013-05-31 17:59:11 -07001363 /**
1364 * Read values from config.xml that may be overridden depending on
1365 * the configuration of the device.
1366 * eg. Disable long press on home goes to recents on sw600dp.
1367 */
1368 private void readConfigurationDependentBehaviors() {
1369 mLongPressOnHomeBehavior = mContext.getResources().getInteger(
1370 com.android.internal.R.integer.config_longPressOnHomeBehavior);
1371 if (mLongPressOnHomeBehavior < LONG_PRESS_HOME_NOTHING ||
1372 mLongPressOnHomeBehavior > LONG_PRESS_HOME_ASSIST) {
1373 mLongPressOnHomeBehavior = LONG_PRESS_HOME_NOTHING;
1374 }
1375
1376 mDoubleTapOnHomeBehavior = mContext.getResources().getInteger(
1377 com.android.internal.R.integer.config_doubleTapOnHomeBehavior);
1378 if (mDoubleTapOnHomeBehavior < DOUBLE_TAP_HOME_NOTHING ||
1379 mDoubleTapOnHomeBehavior > DOUBLE_TAP_HOME_RECENT_SYSTEM_UI) {
1380 mDoubleTapOnHomeBehavior = LONG_PRESS_HOME_NOTHING;
1381 }
1382 }
1383
Craig Mautner0bf6ec92012-12-18 08:33:27 -08001384 @Override
Dianne Hackborndde331c2012-08-03 14:01:57 -07001385 public void setInitialDisplaySize(Display display, int width, int height, int density) {
Jeff Brownef981a42013-08-07 14:13:37 -07001386 // This method might be called before the policy has been fully initialized
1387 // or for other displays we don't care about.
1388 if (mContext == null || display.getDisplayId() != Display.DEFAULT_DISPLAY) {
1389 return;
Dianne Hackbornc652de82013-02-15 16:32:56 -08001390 }
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001391 mDisplay = display;
1392
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001393 final Resources res = mContext.getResources();
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001394 int shortSize, longSize;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001395 if (width > height) {
Dianne Hackborn81e56d52011-05-26 00:55:58 -07001396 shortSize = height;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001397 longSize = width;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001398 mLandscapeRotation = Surface.ROTATION_0;
1399 mSeascapeRotation = Surface.ROTATION_180;
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001400 if (res.getBoolean(com.android.internal.R.bool.config_reverseDefaultRotation)) {
Dianne Hackborn9d132642011-04-21 17:26:39 -07001401 mPortraitRotation = Surface.ROTATION_90;
1402 mUpsideDownRotation = Surface.ROTATION_270;
1403 } else {
1404 mPortraitRotation = Surface.ROTATION_270;
1405 mUpsideDownRotation = Surface.ROTATION_90;
1406 }
1407 } else {
Dianne Hackborn81e56d52011-05-26 00:55:58 -07001408 shortSize = width;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001409 longSize = height;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001410 mPortraitRotation = Surface.ROTATION_0;
1411 mUpsideDownRotation = Surface.ROTATION_180;
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001412 if (res.getBoolean(com.android.internal.R.bool.config_reverseDefaultRotation)) {
Dianne Hackborn9d132642011-04-21 17:26:39 -07001413 mLandscapeRotation = Surface.ROTATION_270;
1414 mSeascapeRotation = Surface.ROTATION_90;
1415 } else {
1416 mLandscapeRotation = Surface.ROTATION_90;
1417 mSeascapeRotation = Surface.ROTATION_270;
1418 }
1419 }
Dianne Hackborn81e56d52011-05-26 00:55:58 -07001420
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001421 mStatusBarHeight =
1422 res.getDimensionPixelSize(com.android.internal.R.dimen.status_bar_height);
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001423
Daniel Sandler9f65c4c2012-04-26 01:35:35 -04001424 // Height of the navigation bar when presented horizontally at bottom
1425 mNavigationBarHeightForRotation[mPortraitRotation] =
1426 mNavigationBarHeightForRotation[mUpsideDownRotation] =
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001427 res.getDimensionPixelSize(com.android.internal.R.dimen.navigation_bar_height);
Daniel Sandler9f65c4c2012-04-26 01:35:35 -04001428 mNavigationBarHeightForRotation[mLandscapeRotation] =
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001429 mNavigationBarHeightForRotation[mSeascapeRotation] = res.getDimensionPixelSize(
1430 com.android.internal.R.dimen.navigation_bar_height_landscape);
Daniel Sandler9f65c4c2012-04-26 01:35:35 -04001431
1432 // Width of the navigation bar when presented vertically along one side
1433 mNavigationBarWidthForRotation[mPortraitRotation] =
1434 mNavigationBarWidthForRotation[mUpsideDownRotation] =
1435 mNavigationBarWidthForRotation[mLandscapeRotation] =
1436 mNavigationBarWidthForRotation[mSeascapeRotation] =
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001437 res.getDimensionPixelSize(com.android.internal.R.dimen.navigation_bar_width);
Daniel Sandler4a066c52012-04-20 14:49:13 -04001438
1439 // SystemUI (status bar) layout policy
Dianne Hackborndde331c2012-08-03 14:01:57 -07001440 int shortSizeDp = shortSize * DisplayMetrics.DENSITY_DEFAULT / density;
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001441 int longSizeDp = longSize * DisplayMetrics.DENSITY_DEFAULT / density;
Daniel Sandler4a066c52012-04-20 14:49:13 -04001442
Devin Kimd7b12b42014-05-05 14:34:58 -07001443 // Allow the navigation bar to move on non-square small devices (phones).
1444 mNavigationBarCanMove = width != height && shortSizeDp < 600;
Daniel Sandler36412a72011-08-04 09:35:13 -04001445
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001446 mHasNavigationBar = res.getBoolean(com.android.internal.R.bool.config_showNavigationBar);
John Spurlock80f00c12013-06-13 11:10:51 -04001447 // Allow a system property to override this. Used by the emulator.
1448 // See also hasNavigationBar().
1449 String navBarOverride = SystemProperties.get("qemu.hw.mainkeys");
1450 if ("1".equals(navBarOverride)) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001451 mHasNavigationBar = false;
John Spurlock80f00c12013-06-13 11:10:51 -04001452 } else if ("0".equals(navBarOverride)) {
1453 mHasNavigationBar = true;
Daniel Sandler0c4ccff2011-10-19 16:39:14 -04001454 }
1455
Jeff Brown27f1d672012-10-17 18:32:34 -07001456 // For demo purposes, allow the rotation of the HDMI display to be controlled.
1457 // By default, HDMI locks rotation to landscape.
Erik Gilling9a41ef82011-09-26 19:21:03 -07001458 if ("portrait".equals(SystemProperties.get("persist.demo.hdmirotation"))) {
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001459 mDemoHdmiRotation = mPortraitRotation;
Erik Gilling9a41ef82011-09-26 19:21:03 -07001460 } else {
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001461 mDemoHdmiRotation = mLandscapeRotation;
Erik Gilling9a41ef82011-09-26 19:21:03 -07001462 }
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001463 mDemoHdmiRotationLock = SystemProperties.getBoolean("persist.demo.hdmirotationlock", false);
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001464
Chong Zhangae6119ff2014-11-11 18:54:39 -08001465 // For demo purposes, allow the rotation of the remote display to be controlled.
1466 // By default, remote display locks rotation to landscape.
1467 if ("portrait".equals(SystemProperties.get("persist.demo.remoterotation"))) {
1468 mDemoRotation = mPortraitRotation;
1469 } else {
1470 mDemoRotation = mLandscapeRotation;
1471 }
1472 mDemoRotationLock = SystemProperties.getBoolean(
1473 "persist.demo.rotationlock", false);
1474
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001475 // Only force the default orientation if the screen is xlarge, at least 960dp x 720dp, per
1476 // http://developer.android.com/guide/practices/screens_support.html#range
1477 mForceDefaultOrientation = longSizeDp >= 960 && shortSizeDp >= 720 &&
1478 res.getBoolean(com.android.internal.R.bool.config_forceDefaultOrientation) &&
1479 // For debug purposes the next line turns this feature off with:
1480 // $ adb shell setprop config.override_forced_orient true
1481 // $ adb shell wm size reset
1482 !"true".equals(SystemProperties.get("config.override_forced_orient"));
1483 }
1484
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07001485 /**
1486 * @return whether the navigation bar can be hidden, e.g. the device has a
1487 * navigation bar and touch exploration is not enabled
1488 */
1489 private boolean canHideNavigationBar() {
Svetoslav8e3feb12014-02-24 13:46:47 -08001490 return mHasNavigationBar
1491 && !mAccessibilityManager.isTouchExplorationEnabled();
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07001492 }
1493
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001494 @Override
1495 public boolean isDefaultOrientationForced() {
1496 return mForceDefaultOrientation;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001497 }
1498
Dianne Hackbornc652de82013-02-15 16:32:56 -08001499 @Override
1500 public void setDisplayOverscan(Display display, int left, int top, int right, int bottom) {
1501 if (display.getDisplayId() == Display.DEFAULT_DISPLAY) {
1502 mOverscanLeft = left;
1503 mOverscanTop = top;
1504 mOverscanRight = right;
1505 mOverscanBottom = bottom;
1506 }
1507 }
1508
Dianne Hackbornc777e072010-02-12 13:07:59 -08001509 public void updateSettings() {
1510 ContentResolver resolver = mContext.getContentResolver();
1511 boolean updateRotation = false;
Dianne Hackbornc777e072010-02-12 13:07:59 -08001512 synchronized (mLock) {
Christopher Tate5e08af02012-09-21 17:17:22 -07001513 mEndcallBehavior = Settings.System.getIntForUser(resolver,
David Brownbaf8d092010-03-08 21:52:59 -08001514 Settings.System.END_BUTTON_BEHAVIOR,
Christopher Tate5e08af02012-09-21 17:17:22 -07001515 Settings.System.END_BUTTON_BEHAVIOR_DEFAULT,
1516 UserHandle.USER_CURRENT);
1517 mIncallPowerBehavior = Settings.Secure.getIntForUser(resolver,
David Brownbaf8d092010-03-08 21:52:59 -08001518 Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR,
Christopher Tate5e08af02012-09-21 17:17:22 -07001519 Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR_DEFAULT,
1520 UserHandle.USER_CURRENT);
Daniel Sandlerb73617d2010-08-17 00:41:00 -04001521
Jeff Browna20dda42014-05-27 20:57:24 -07001522 // Configure wake gesture.
1523 boolean wakeGestureEnabledSetting = Settings.Secure.getIntForUser(resolver,
1524 Settings.Secure.WAKE_GESTURE_ENABLED, 0,
1525 UserHandle.USER_CURRENT) != 0;
1526 if (mWakeGestureEnabledSetting != wakeGestureEnabledSetting) {
1527 mWakeGestureEnabledSetting = wakeGestureEnabledSetting;
1528 updateWakeGestureListenerLp();
1529 }
1530
Jeff Brown207673cd2012-06-05 17:47:11 -07001531 // Configure rotation lock.
Christopher Tate5e08af02012-09-21 17:17:22 -07001532 int userRotation = Settings.System.getIntForUser(resolver,
1533 Settings.System.USER_ROTATION, Surface.ROTATION_0,
1534 UserHandle.USER_CURRENT);
Jeff Brown207673cd2012-06-05 17:47:11 -07001535 if (mUserRotation != userRotation) {
1536 mUserRotation = userRotation;
1537 updateRotation = true;
1538 }
Christopher Tate5e08af02012-09-21 17:17:22 -07001539 int userRotationMode = Settings.System.getIntForUser(resolver,
1540 Settings.System.ACCELEROMETER_ROTATION, 0, UserHandle.USER_CURRENT) != 0 ?
Jeff Brown207673cd2012-06-05 17:47:11 -07001541 WindowManagerPolicy.USER_ROTATION_FREE :
1542 WindowManagerPolicy.USER_ROTATION_LOCKED;
1543 if (mUserRotationMode != userRotationMode) {
1544 mUserRotationMode = userRotationMode;
1545 updateRotation = true;
Dianne Hackbornc777e072010-02-12 13:07:59 -08001546 updateOrientationListenerLp();
1547 }
Daniel Sandlerb73617d2010-08-17 00:41:00 -04001548
Dianne Hackbornc777e072010-02-12 13:07:59 -08001549 if (mSystemReady) {
Christopher Tate5e08af02012-09-21 17:17:22 -07001550 int pointerLocation = Settings.System.getIntForUser(resolver,
1551 Settings.System.POINTER_LOCATION, 0, UserHandle.USER_CURRENT);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001552 if (mPointerLocationMode != pointerLocation) {
1553 mPointerLocationMode = pointerLocation;
Jeff Brown70825162012-03-28 17:27:48 -07001554 mHandler.sendEmptyMessage(pointerLocation != 0 ?
1555 MSG_ENABLE_POINTER_LOCATION : MSG_DISABLE_POINTER_LOCATION);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001556 }
1557 }
1558 // use screen off timeout setting as the timeout for the lockscreen
Christopher Tate5e08af02012-09-21 17:17:22 -07001559 mLockScreenTimeout = Settings.System.getIntForUser(resolver,
1560 Settings.System.SCREEN_OFF_TIMEOUT, 0, UserHandle.USER_CURRENT);
1561 String imId = Settings.Secure.getStringForUser(resolver,
1562 Settings.Secure.DEFAULT_INPUT_METHOD, UserHandle.USER_CURRENT);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001563 boolean hasSoftInput = imId != null && imId.length() > 0;
1564 if (mHasSoftInput != hasSoftInput) {
1565 mHasSoftInput = hasSoftInput;
1566 updateRotation = true;
1567 }
John Spurlockf1a36642013-10-12 17:50:42 -04001568 if (mImmersiveModeConfirmation != null) {
John Spurlock4355a532014-02-19 09:49:25 -05001569 mImmersiveModeConfirmation.loadSetting(mCurrentUserId);
John Spurlockd67ec252013-09-05 11:31:54 -04001570 }
John Spurlockc6d1c602014-01-17 15:22:06 -05001571 PolicyControl.reloadFromSetting(mContext);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001572 }
1573 if (updateRotation) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07001574 updateRotation(true);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001575 }
Jeff Brown70825162012-03-28 17:27:48 -07001576 }
1577
Jeff Browna20dda42014-05-27 20:57:24 -07001578 private void updateWakeGestureListenerLp() {
1579 if (shouldEnableWakeGestureLp()) {
1580 mWakeGestureListener.requestWakeUpTrigger();
1581 } else {
1582 mWakeGestureListener.cancelWakeUpTrigger();
1583 }
1584 }
1585
1586 private boolean shouldEnableWakeGestureLp() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07001587 return mWakeGestureEnabledSetting && !mAwake
Jeff Browna20dda42014-05-27 20:57:24 -07001588 && (!mLidControlsSleep || mLidState != LID_CLOSED)
1589 && mWakeGestureListener.isSupported();
1590 }
1591
Jeff Brown70825162012-03-28 17:27:48 -07001592 private void enablePointerLocation() {
1593 if (mPointerLocationView == null) {
1594 mPointerLocationView = new PointerLocationView(mContext);
1595 mPointerLocationView.setPrintCoords(false);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001596 WindowManager.LayoutParams lp = new WindowManager.LayoutParams(
1597 WindowManager.LayoutParams.MATCH_PARENT,
1598 WindowManager.LayoutParams.MATCH_PARENT);
Jeff Brown3b2b3542010-10-15 00:54:27 -07001599 lp.type = WindowManager.LayoutParams.TYPE_SECURE_SYSTEM_OVERLAY;
Jeff Brownbfcb60a2011-09-08 18:51:14 -07001600 lp.flags = WindowManager.LayoutParams.FLAG_FULLSCREEN
1601 | WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE
1602 | WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE
1603 | WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN;
Jeff Brown90fc9052012-10-01 14:44:24 -07001604 if (ActivityManager.isHighEndGfx()) {
1605 lp.flags |= WindowManager.LayoutParams.FLAG_HARDWARE_ACCELERATED;
1606 lp.privateFlags |=
1607 WindowManager.LayoutParams.PRIVATE_FLAG_FORCE_HARDWARE_ACCELERATED;
1608 }
Dianne Hackbornc777e072010-02-12 13:07:59 -08001609 lp.format = PixelFormat.TRANSLUCENT;
1610 lp.setTitle("PointerLocation");
Dianne Hackborn5fd21692011-06-07 14:09:47 -07001611 WindowManager wm = (WindowManager)
Dianne Hackbornc777e072010-02-12 13:07:59 -08001612 mContext.getSystemService(Context.WINDOW_SERVICE);
Jeff Browncc4f7db2011-08-30 20:34:48 -07001613 lp.inputFeatures |= WindowManager.LayoutParams.INPUT_FEATURE_NO_INPUT_CHANNEL;
Jeff Brown70825162012-03-28 17:27:48 -07001614 wm.addView(mPointerLocationView, lp);
Michael Wrightc9c487e2013-11-07 18:55:09 -08001615 mWindowManagerFuncs.registerPointerEventListener(mPointerLocationView);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001616 }
Dianne Hackbornc777e072010-02-12 13:07:59 -08001617 }
Jeff Brown70825162012-03-28 17:27:48 -07001618
1619 private void disablePointerLocation() {
Jeff Brown70825162012-03-28 17:27:48 -07001620 if (mPointerLocationView != null) {
Michael Wrightc9c487e2013-11-07 18:55:09 -08001621 mWindowManagerFuncs.unregisterPointerEventListener(mPointerLocationView);
1622 WindowManager wm = (WindowManager) mContext.getSystemService(Context.WINDOW_SERVICE);
Jeff Brown70825162012-03-28 17:27:48 -07001623 wm.removeView(mPointerLocationView);
1624 mPointerLocationView = null;
1625 }
1626 }
1627
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001628 private int readRotation(int resID) {
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001629 try {
1630 int rotation = mContext.getResources().getInteger(resID);
1631 switch (rotation) {
1632 case 0:
1633 return Surface.ROTATION_0;
1634 case 90:
1635 return Surface.ROTATION_90;
1636 case 180:
1637 return Surface.ROTATION_180;
1638 case 270:
1639 return Surface.ROTATION_270;
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001640 }
1641 } catch (Resources.NotFoundException e) {
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001642 // fall through
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001643 }
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001644 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001645 }
1646
1647 /** {@inheritDoc} */
Craig Mautner88400d32012-09-30 12:35:45 -07001648 @Override
Dianne Hackbornc2293022013-02-06 23:14:49 -08001649 public int checkAddPermission(WindowManager.LayoutParams attrs, int[] outAppOp) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001650 int type = attrs.type;
Dianne Hackbornc2293022013-02-06 23:14:49 -08001651
1652 outAppOp[0] = AppOpsManager.OP_NONE;
1653
Wale Ogunwale74bf0652015-01-12 10:24:36 -08001654 if (!((type >= FIRST_APPLICATION_WINDOW && type <= LAST_APPLICATION_WINDOW)
1655 || (type >= FIRST_SUB_WINDOW && type <= LAST_SUB_WINDOW)
1656 || (type >= FIRST_SYSTEM_WINDOW && type <= LAST_SYSTEM_WINDOW))) {
1657 return WindowManagerGlobal.ADD_INVALID_TYPE;
1658 }
1659
1660 if (type < FIRST_SYSTEM_WINDOW || type > LAST_SYSTEM_WINDOW) {
1661 // Window manager will make sure these are okay.
Jeff Brown98365d72012-08-19 20:30:52 -07001662 return WindowManagerGlobal.ADD_OKAY;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001663 }
1664 String permission = null;
1665 switch (type) {
1666 case TYPE_TOAST:
1667 // XXX right now the app process has complete control over
1668 // this... should introduce a token to let the system
1669 // monitor/control what they are doing.
Jason Monk1c7c3192014-06-26 12:52:18 -04001670 outAppOp[0] = AppOpsManager.OP_TOAST_WINDOW;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001671 break;
Daniel Sandler7d276c32012-01-30 14:33:52 -05001672 case TYPE_DREAM:
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001673 case TYPE_INPUT_METHOD:
Dianne Hackbornb7cd8b92009-08-08 20:53:03 -07001674 case TYPE_WALLPAPER:
keunyounga446bf02013-06-21 19:07:57 -07001675 case TYPE_PRIVATE_PRESENTATION:
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001676 case TYPE_VOICE_INTERACTION:
Svetoslav3a5c7212014-10-14 09:54:26 -07001677 case TYPE_ACCESSIBILITY_OVERLAY:
Dianne Hackbornb7cd8b92009-08-08 20:53:03 -07001678 // The window manager will check these.
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001679 break;
1680 case TYPE_PHONE:
1681 case TYPE_PRIORITY_PHONE:
1682 case TYPE_SYSTEM_ALERT:
1683 case TYPE_SYSTEM_ERROR:
1684 case TYPE_SYSTEM_OVERLAY:
1685 permission = android.Manifest.permission.SYSTEM_ALERT_WINDOW;
Dianne Hackbornc2293022013-02-06 23:14:49 -08001686 outAppOp[0] = AppOpsManager.OP_SYSTEM_ALERT_WINDOW;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001687 break;
1688 default:
1689 permission = android.Manifest.permission.INTERNAL_SYSTEM_WINDOW;
1690 }
1691 if (permission != null) {
1692 if (mContext.checkCallingOrSelfPermission(permission)
1693 != PackageManager.PERMISSION_GRANTED) {
Jeff Brown98365d72012-08-19 20:30:52 -07001694 return WindowManagerGlobal.ADD_PERMISSION_DENIED;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001695 }
1696 }
Jeff Brown98365d72012-08-19 20:30:52 -07001697 return WindowManagerGlobal.ADD_OKAY;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001698 }
Craig Mautner88400d32012-09-30 12:35:45 -07001699
1700 @Override
1701 public boolean checkShowToOwnerOnly(WindowManager.LayoutParams attrs) {
1702
1703 // If this switch statement is modified, modify the comment in the declarations of
1704 // the type in {@link WindowManager.LayoutParams} as well.
1705 switch (attrs.type) {
1706 default:
1707 // These are the windows that by default are shown only to the user that created
1708 // them. If this needs to be overridden, set
1709 // {@link WindowManager.LayoutParams.PRIVATE_FLAG_SHOW_FOR_ALL_USERS} in
1710 // {@link WindowManager.LayoutParams}. Note that permission
1711 // {@link android.Manifest.permission.INTERNAL_SYSTEM_WINDOW} is required as well.
1712 if ((attrs.privateFlags & PRIVATE_FLAG_SHOW_FOR_ALL_USERS) == 0) {
1713 return true;
1714 }
1715 break;
1716
1717 // These are the windows that by default are shown to all users. However, to
1718 // protect against spoofing, check permissions below.
1719 case TYPE_APPLICATION_STARTING:
1720 case TYPE_BOOT_PROGRESS:
1721 case TYPE_DISPLAY_OVERLAY:
1722 case TYPE_HIDDEN_NAV_CONSUMER:
Jim Miller5ecd8112013-01-09 18:50:26 -08001723 case TYPE_KEYGUARD_SCRIM:
Craig Mautner88400d32012-09-30 12:35:45 -07001724 case TYPE_KEYGUARD_DIALOG:
1725 case TYPE_MAGNIFICATION_OVERLAY:
1726 case TYPE_NAVIGATION_BAR:
1727 case TYPE_NAVIGATION_BAR_PANEL:
1728 case TYPE_PHONE:
1729 case TYPE_POINTER:
1730 case TYPE_PRIORITY_PHONE:
Craig Mautner88400d32012-09-30 12:35:45 -07001731 case TYPE_SEARCH_BAR:
1732 case TYPE_STATUS_BAR:
1733 case TYPE_STATUS_BAR_PANEL:
1734 case TYPE_STATUS_BAR_SUB_PANEL:
1735 case TYPE_SYSTEM_DIALOG:
Craig Mautner88400d32012-09-30 12:35:45 -07001736 case TYPE_VOLUME_OVERLAY:
keunyounga446bf02013-06-21 19:07:57 -07001737 case TYPE_PRIVATE_PRESENTATION:
Craig Mautner88400d32012-09-30 12:35:45 -07001738 break;
1739 }
1740
1741 // Check if third party app has set window to system window type.
1742 return mContext.checkCallingOrSelfPermission(
1743 android.Manifest.permission.INTERNAL_SYSTEM_WINDOW)
1744 != PackageManager.PERMISSION_GRANTED;
1745 }
1746
Craig Mautner967212c2013-04-13 21:10:58 -07001747 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001748 public void adjustWindowParamsLw(WindowManager.LayoutParams attrs) {
1749 switch (attrs.type) {
1750 case TYPE_SYSTEM_OVERLAY:
Jeff Brown3b2b3542010-10-15 00:54:27 -07001751 case TYPE_SECURE_SYSTEM_OVERLAY:
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001752 // These types of windows can't receive input events.
1753 attrs.flags |= WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE
1754 | WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE;
Jeff Brownbfcb60a2011-09-08 18:51:14 -07001755 attrs.flags &= ~WindowManager.LayoutParams.FLAG_WATCH_OUTSIDE_TOUCH;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001756 break;
Jorim Jaggi380ecb82014-03-14 17:25:20 +01001757 case TYPE_STATUS_BAR:
1758
1759 // If the Keyguard is in a hidden state (occluded by another window), we force to
1760 // remove the wallpaper and keyguard flag so that any change in-flight after setting
1761 // the keyguard as occluded wouldn't set these flags again.
1762 // See {@link #processKeyguardSetHiddenResultLw}.
1763 if (mKeyguardHidden) {
1764 attrs.flags &= ~WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
1765 attrs.privateFlags &= ~WindowManager.LayoutParams.PRIVATE_FLAG_KEYGUARD;
1766 }
1767 break;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001768 }
Adrian Roos38502112014-04-09 21:04:11 +02001769
1770 if (attrs.type != TYPE_STATUS_BAR) {
1771 // The status bar is the only window allowed to exhibit keyguard behavior.
1772 attrs.privateFlags &= ~WindowManager.LayoutParams.PRIVATE_FLAG_KEYGUARD;
1773 }
Adrian Roosea562512014-05-05 13:33:03 +02001774
1775 if (ActivityManager.isHighEndGfx()
1776 && (attrs.flags & FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS) != 0) {
Adrian Roosf5e9b5c2014-09-10 15:27:41 +02001777 attrs.subtreeSystemUiVisibility |= View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
Adrian Roosea562512014-05-05 13:33:03 +02001778 | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION;
1779 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001780 }
RoboErik8a2cfc32014-05-16 11:19:38 -07001781
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001782 void readLidState() {
Jeff Brown2e7760e2012-04-11 15:14:55 -07001783 mLidState = mWindowManagerFuncs.getLidState();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001784 }
RoboErik8a2cfc32014-05-16 11:19:38 -07001785
Michael Wright3818c922014-09-02 13:59:07 -07001786 private void readCameraLensCoverState() {
1787 mCameraLensCoverState = mWindowManagerFuncs.getCameraLensCoverState();
1788 }
1789
Jeff Browndaa37532012-05-01 15:54:03 -07001790 private boolean isHidden(int accessibilityMode) {
1791 switch (accessibilityMode) {
1792 case 1:
1793 return mLidState == LID_CLOSED;
1794 case 2:
1795 return mLidState == LID_OPEN;
1796 default:
1797 return false;
Dianne Hackborn2862fff2009-09-15 22:56:29 -07001798 }
Dianne Hackborn2862fff2009-09-15 22:56:29 -07001799 }
Jeff Brownd04a88c2011-01-16 14:05:47 -08001800
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001801 /** {@inheritDoc} */
Craig Mautner967212c2013-04-13 21:10:58 -07001802 @Override
Jeff Browndaa37532012-05-01 15:54:03 -07001803 public void adjustConfigurationLw(Configuration config, int keyboardPresence,
1804 int navigationPresence) {
1805 mHaveBuiltInKeyboard = (keyboardPresence & PRESENCE_INTERNAL) != 0;
1806
Jeff Brownf71343d2013-05-31 17:59:11 -07001807 readConfigurationDependentBehaviors();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001808 readLidState();
Jeff Brownc458ce92012-04-30 14:58:40 -07001809 applyLidSwitchState();
Jeff Brownd04a88c2011-01-16 14:05:47 -08001810
Jeff Browndaa37532012-05-01 15:54:03 -07001811 if (config.keyboard == Configuration.KEYBOARD_NOKEYS
1812 || (keyboardPresence == PRESENCE_INTERNAL
1813 && isHidden(mLidKeyboardAccessibility))) {
Jeff Brownd04a88c2011-01-16 14:05:47 -08001814 config.hardKeyboardHidden = Configuration.HARDKEYBOARDHIDDEN_YES;
Jeff Browndaa37532012-05-01 15:54:03 -07001815 if (!mHasSoftInput) {
1816 config.keyboardHidden = Configuration.KEYBOARDHIDDEN_YES;
1817 }
Jeff Brownd04a88c2011-01-16 14:05:47 -08001818 }
1819
Jeff Browndaa37532012-05-01 15:54:03 -07001820 if (config.navigation == Configuration.NAVIGATION_NONAV
1821 || (navigationPresence == PRESENCE_INTERNAL
1822 && isHidden(mLidNavigationAccessibility))) {
Jeff Brownd04a88c2011-01-16 14:05:47 -08001823 config.navigationHidden = Configuration.NAVIGATIONHIDDEN_YES;
Jeff Brownd04a88c2011-01-16 14:05:47 -08001824 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001825 }
Jeff Brownd04a88c2011-01-16 14:05:47 -08001826
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001827 /** {@inheritDoc} */
Craig Mautner967212c2013-04-13 21:10:58 -07001828 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001829 public int windowTypeToLayerLw(int type) {
1830 if (type >= FIRST_APPLICATION_WINDOW && type <= LAST_APPLICATION_WINDOW) {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001831 return 2;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001832 }
1833 switch (type) {
keunyounga446bf02013-06-21 19:07:57 -07001834 case TYPE_PRIVATE_PRESENTATION:
1835 return 2;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001836 case TYPE_WALLPAPER:
1837 // wallpaper is at the bottom, though the window manager may move it.
1838 return 2;
1839 case TYPE_PHONE:
1840 return 3;
1841 case TYPE_SEARCH_BAR:
1842 return 4;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001843 case TYPE_VOICE_INTERACTION:
1844 // voice interaction layer is almost immediately above apps.
1845 return 5;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001846 case TYPE_SYSTEM_DIALOG:
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001847 return 6;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001848 case TYPE_TOAST:
1849 // toasts and the plugged-in battery thing
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001850 return 7;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001851 case TYPE_PRIORITY_PHONE:
1852 // SIM errors and unlock. Not sure if this really should be in a high layer.
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001853 return 8;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001854 case TYPE_DREAM:
1855 // used for Dreams (screensavers with TYPE_DREAM windows)
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001856 return 9;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001857 case TYPE_SYSTEM_ALERT:
1858 // like the ANR / app crashed dialogs
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001859 return 10;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001860 case TYPE_INPUT_METHOD:
1861 // on-screen keyboards and other such input method user interfaces go here.
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001862 return 11;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001863 case TYPE_INPUT_METHOD_DIALOG:
1864 // on-screen keyboards and other such input method user interfaces go here.
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001865 return 12;
Jim Miller5ecd8112013-01-09 18:50:26 -08001866 case TYPE_KEYGUARD_SCRIM:
1867 // the safety window that shows behind keyguard while keyguard is starting
Jorim Jaggi380ecb82014-03-14 17:25:20 +01001868 return 13;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001869 case TYPE_STATUS_BAR_SUB_PANEL:
Jorim Jaggi380ecb82014-03-14 17:25:20 +01001870 return 14;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001871 case TYPE_STATUS_BAR:
Jorim Jaggi380ecb82014-03-14 17:25:20 +01001872 return 15;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001873 case TYPE_STATUS_BAR_PANEL:
Jorim Jaggi380ecb82014-03-14 17:25:20 +01001874 return 16;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001875 case TYPE_KEYGUARD_DIALOG:
1876 return 17;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001877 case TYPE_VOLUME_OVERLAY:
1878 // the on-screen volume indicator and controller shown when the user
1879 // changes the device volume
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001880 return 18;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001881 case TYPE_SYSTEM_OVERLAY:
1882 // the on-screen volume indicator and controller shown when the user
1883 // changes the device volume
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001884 return 19;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001885 case TYPE_NAVIGATION_BAR:
1886 // the navigation bar, if available, shows atop most things
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001887 return 20;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001888 case TYPE_NAVIGATION_BAR_PANEL:
1889 // some panels (e.g. search) need to show on top of the navigation bar
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001890 return 21;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001891 case TYPE_SYSTEM_ERROR:
1892 // system-level error dialogs
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001893 return 22;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001894 case TYPE_MAGNIFICATION_OVERLAY:
1895 // used to highlight the magnified portion of a display
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001896 return 23;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001897 case TYPE_DISPLAY_OVERLAY:
1898 // used to simulate secondary display devices
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001899 return 24;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001900 case TYPE_DRAG:
1901 // the drag layer: input for drag-and-drop is associated with this window,
1902 // which sits above all other focusable windows
Jorim Jaggi380ecb82014-03-14 17:25:20 +01001903 return 25;
Svetoslav3a5c7212014-10-14 09:54:26 -07001904 case TYPE_ACCESSIBILITY_OVERLAY:
1905 // overlay put by accessibility services to intercept user interaction
Jorim Jaggi380ecb82014-03-14 17:25:20 +01001906 return 26;
Svetoslav3a5c7212014-10-14 09:54:26 -07001907 case TYPE_SECURE_SYSTEM_OVERLAY:
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001908 return 27;
Svetoslav3a5c7212014-10-14 09:54:26 -07001909 case TYPE_BOOT_PROGRESS:
1910 return 28;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001911 case TYPE_POINTER:
1912 // the (mouse) pointer layer
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001913 return 29;
Svetoslav3a5c7212014-10-14 09:54:26 -07001914 case TYPE_HIDDEN_NAV_CONSUMER:
1915 return 30;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001916 }
1917 Log.e(TAG, "Unknown window type: " + type);
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001918 return 2;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001919 }
1920
1921 /** {@inheritDoc} */
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001922 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001923 public int subWindowTypeToLayerLw(int type) {
1924 switch (type) {
1925 case TYPE_APPLICATION_PANEL:
1926 case TYPE_APPLICATION_ATTACHED_DIALOG:
1927 return APPLICATION_PANEL_SUBLAYER;
1928 case TYPE_APPLICATION_MEDIA:
1929 return APPLICATION_MEDIA_SUBLAYER;
Dianne Hackborn5cb8d792009-05-21 17:34:15 -07001930 case TYPE_APPLICATION_MEDIA_OVERLAY:
1931 return APPLICATION_MEDIA_OVERLAY_SUBLAYER;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001932 case TYPE_APPLICATION_SUB_PANEL:
1933 return APPLICATION_SUB_PANEL_SUBLAYER;
1934 }
1935 Log.e(TAG, "Unknown sub-window type: " + type);
1936 return 0;
1937 }
1938
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001939 @Override
Dianne Hackbornabe0da02009-09-18 01:55:39 -07001940 public int getMaxWallpaperLayer() {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001941 return windowTypeToLayerLw(TYPE_STATUS_BAR);
Dianne Hackbornabe0da02009-09-18 01:55:39 -07001942 }
1943
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001944 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07001945 public int getNonDecorDisplayWidth(int fullWidth, int fullHeight, int rotation) {
Dianne Hackborn077ee852012-04-09 16:27:07 -07001946 if (mHasNavigationBar) {
1947 // For a basic navigation bar, when we are in landscape mode we place
1948 // the navigation bar to the side.
Daniel Sandler4a066c52012-04-20 14:49:13 -04001949 if (mNavigationBarCanMove && fullWidth > fullHeight) {
1950 return fullWidth - mNavigationBarWidthForRotation[rotation];
Dianne Hackborn077ee852012-04-09 16:27:07 -07001951 }
Dianne Hackborn1f903c32011-09-13 19:18:06 -07001952 }
1953 return fullWidth;
Dianne Hackborne2515ee2011-04-27 18:52:56 -04001954 }
1955
Jose Lima9546b202014-07-02 17:21:51 -07001956 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07001957 public int getNonDecorDisplayHeight(int fullWidth, int fullHeight, int rotation) {
Dianne Hackborn077ee852012-04-09 16:27:07 -07001958 if (mHasNavigationBar) {
1959 // For a basic navigation bar, when we are in portrait mode we place
1960 // the navigation bar to the bottom.
Daniel Sandler4a066c52012-04-20 14:49:13 -04001961 if (!mNavigationBarCanMove || fullWidth < fullHeight) {
1962 return fullHeight - mNavigationBarHeightForRotation[rotation];
Dianne Hackborn077ee852012-04-09 16:27:07 -07001963 }
1964 }
1965 return fullHeight;
Dianne Hackborn69cb8752011-05-19 18:13:32 -07001966 }
1967
Jose Lima9546b202014-07-02 17:21:51 -07001968 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07001969 public int getConfigDisplayWidth(int fullWidth, int fullHeight, int rotation) {
1970 return getNonDecorDisplayWidth(fullWidth, fullHeight, rotation);
Dianne Hackborn69cb8752011-05-19 18:13:32 -07001971 }
1972
Jose Lima9546b202014-07-02 17:21:51 -07001973 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07001974 public int getConfigDisplayHeight(int fullWidth, int fullHeight, int rotation) {
John Spurlock80f00c12013-06-13 11:10:51 -04001975 // There is a separate status bar at the top of the display. We don't count that as part
1976 // of the fixed decor, since it can hide; however, for purposes of configurations,
Dianne Hackborn077ee852012-04-09 16:27:07 -07001977 // we do want to exclude it since applications can't generally use that part
1978 // of the screen.
John Spurlock80f00c12013-06-13 11:10:51 -04001979 return getNonDecorDisplayHeight(fullWidth, fullHeight, rotation) - mStatusBarHeight;
Dianne Hackborne2515ee2011-04-27 18:52:56 -04001980 }
1981
Craig Mautnera3f4bf52012-10-10 20:37:48 -07001982 @Override
Craig Mautnerc9457fa2014-06-06 14:27:48 -07001983 public boolean isForceHiding(WindowManager.LayoutParams attrs) {
1984 return (attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0 ||
Jim Millerab954542014-10-10 18:21:49 -07001985 (isKeyguardHostWindow(attrs) &&
1986 (mKeyguardDelegate != null && mKeyguardDelegate.isShowing())) ||
Adrian Roos69e510d2014-07-13 14:57:59 +02001987 (attrs.type == TYPE_KEYGUARD_SCRIM);
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07001988 }
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001989
Craig Mautnera3f4bf52012-10-10 20:37:48 -07001990 @Override
Jorim Jaggi0d674622014-05-21 01:34:15 +02001991 public boolean isKeyguardHostWindow(WindowManager.LayoutParams attrs) {
1992 return attrs.type == TYPE_STATUS_BAR;
1993 }
1994
1995 @Override
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07001996 public boolean canBeForceHidden(WindowState win, WindowManager.LayoutParams attrs) {
Craig Mautnera3f4bf52012-10-10 20:37:48 -07001997 switch (attrs.type) {
1998 case TYPE_STATUS_BAR:
1999 case TYPE_NAVIGATION_BAR:
2000 case TYPE_WALLPAPER:
2001 case TYPE_DREAM:
Jim Miller5ecd8112013-01-09 18:50:26 -08002002 case TYPE_KEYGUARD_SCRIM:
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002003 return false;
2004 default:
2005 return true;
2006 }
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002007 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002008
Craig Mautner7d7808f2014-09-11 18:02:38 -07002009 @Override
2010 public WindowState getWinShowWhenLockedLw() {
2011 return mWinShowWhenLocked;
2012 }
2013
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002014 /** {@inheritDoc} */
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002015 @Override
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07002016 public View addStartingWindow(IBinder appToken, String packageName, int theme,
2017 CompatibilityInfo compatInfo, CharSequence nonLocalizedLabel, int labelRes,
Adam Powell04fe6eb2013-05-31 14:39:48 -07002018 int icon, int logo, int windowFlags) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002019 if (!SHOW_STARTING_ANIMATIONS) {
2020 return null;
2021 }
2022 if (packageName == null) {
2023 return null;
2024 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002025
Mathias Jeppssond1443e92012-08-24 15:25:32 +02002026 WindowManager wm = null;
2027 View view = null;
2028
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002029 try {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002030 Context context = mContext;
Craig Mautner6fbda632012-07-03 09:26:39 -07002031 if (DEBUG_STARTING_WINDOW) Slog.d(TAG, "addStartingWindow " + packageName
2032 + ": nonLocalizedLabel=" + nonLocalizedLabel + " theme="
2033 + Integer.toHexString(theme));
Dianne Hackborn247fe742011-01-08 17:25:57 -08002034 if (theme != context.getThemeResId() || labelRes != 0) {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002035 try {
2036 context = context.createPackageContext(packageName, 0);
Dianne Hackborn247fe742011-01-08 17:25:57 -08002037 context.setTheme(theme);
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002038 } catch (PackageManager.NameNotFoundException e) {
2039 // Ignore
2040 }
2041 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002042
Jorim Jaggib10e33f2015-02-04 21:57:40 +01002043 Window win = new PhoneWindow(context);
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002044 final TypedArray ta = win.getWindowStyle();
2045 if (ta.getBoolean(
2046 com.android.internal.R.styleable.Window_windowDisablePreview, false)
2047 || ta.getBoolean(
2048 com.android.internal.R.styleable.Window_windowShowWallpaper,false)) {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002049 return null;
2050 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002051
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002052 Resources r = context.getResources();
2053 win.setTitle(r.getText(labelRes, nonLocalizedLabel));
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002054
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002055 win.setType(
2056 WindowManager.LayoutParams.TYPE_APPLICATION_STARTING);
2057 // Force the window flags: this is a fake window, so it is not really
2058 // touchable or focusable by the user. We also add in the ALT_FOCUSABLE_IM
2059 // flag because we do know that the next window will take input
2060 // focus, so we want to get the IME window up on top of us right away.
2061 win.setFlags(
Dianne Hackborn7eec10e2010-11-12 18:03:47 -08002062 windowFlags|
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002063 WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE|
2064 WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE|
2065 WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM,
Dianne Hackborn7eec10e2010-11-12 18:03:47 -08002066 windowFlags|
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002067 WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE|
2068 WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE|
2069 WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM);
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002070
Adam Powell04fe6eb2013-05-31 14:39:48 -07002071 win.setDefaultIcon(icon);
2072 win.setDefaultLogo(logo);
2073
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002074 win.setLayout(WindowManager.LayoutParams.MATCH_PARENT,
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07002075 WindowManager.LayoutParams.MATCH_PARENT);
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002076
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002077 final WindowManager.LayoutParams params = win.getAttributes();
2078 params.token = appToken;
2079 params.packageName = packageName;
2080 params.windowAnimations = win.getWindowStyle().getResourceId(
2081 com.android.internal.R.styleable.Window_windowAnimationStyle, 0);
John Reck61375a82014-09-18 19:27:48 +00002082 params.privateFlags |=
2083 WindowManager.LayoutParams.PRIVATE_FLAG_FAKE_HARDWARE_ACCELERATED;
Craig Mautner88400d32012-09-30 12:35:45 -07002084 params.privateFlags |= WindowManager.LayoutParams.PRIVATE_FLAG_SHOW_FOR_ALL_USERS;
Adam Lesinski95c42972013-10-02 10:13:27 -07002085
2086 if (!compatInfo.supportsScreen()) {
2087 params.privateFlags |= WindowManager.LayoutParams.PRIVATE_FLAG_COMPATIBLE_WINDOW;
2088 }
2089
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002090 params.setTitle("Starting " + packageName);
2091
Mathias Jeppssond1443e92012-08-24 15:25:32 +02002092 wm = (WindowManager)context.getSystemService(Context.WINDOW_SERVICE);
2093 view = win.getDecorView();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002094
2095 if (win.isFloating()) {
2096 // Whoops, there is no way to display an animation/preview
2097 // of such a thing! After all that work... let's skip it.
2098 // (Note that we must do this here because it is in
2099 // getDecorView() where the theme is evaluated... maybe
2100 // we should peek the floating attribute from the theme
2101 // earlier.)
2102 return null;
2103 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002104
Craig Mautner6fbda632012-07-03 09:26:39 -07002105 if (DEBUG_STARTING_WINDOW) Slog.d(
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002106 TAG, "Adding starting window for " + packageName
2107 + " / " + appToken + ": "
2108 + (view.getParent() != null ? view : null));
2109
2110 wm.addView(view, params);
2111
2112 // Only return the view if it was successfully added to the
2113 // window manager... which we can tell by it having a parent.
2114 return view.getParent() != null ? view : null;
Jeff Brown98365d72012-08-19 20:30:52 -07002115 } catch (WindowManager.BadTokenException e) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002116 // ignore
Craig Mautner42bf39e2014-02-21 16:46:22 -08002117 Log.w(TAG, appToken + " already running, starting window not displayed. " +
2118 e.getMessage());
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002119 } catch (RuntimeException e) {
2120 // don't crash if something else bad happens, for example a
2121 // failure loading resources because we are loading from an app
2122 // on external storage that has been unmounted.
2123 Log.w(TAG, appToken + " failed creating starting window", e);
Mathias Jeppssond1443e92012-08-24 15:25:32 +02002124 } finally {
2125 if (view != null && view.getParent() == null) {
2126 Log.w(TAG, "view not successfully added to wm, removing view");
2127 wm.removeViewImmediate(view);
2128 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002129 }
2130
2131 return null;
2132 }
2133
2134 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07002135 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002136 public void removeStartingWindow(IBinder appToken, View window) {
Craig Mautner276a6eb2014-11-04 15:32:57 -08002137 if (DEBUG_STARTING_WINDOW) Slog.v(TAG, "Removing starting window for " + appToken + ": "
2138 + window + " Callers=" + Debug.getCallers(4));
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002139
2140 if (window != null) {
Dianne Hackborn5fd21692011-06-07 14:09:47 -07002141 WindowManager wm = (WindowManager)mContext.getSystemService(Context.WINDOW_SERVICE);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002142 wm.removeView(window);
2143 }
2144 }
2145
2146 /**
2147 * Preflight adding a window to the system.
RoboErik8a2cfc32014-05-16 11:19:38 -07002148 *
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002149 * Currently enforces that three window types are singletons:
2150 * <ul>
2151 * <li>STATUS_BAR_TYPE</li>
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002152 * <li>KEYGUARD_TYPE</li>
2153 * </ul>
RoboErik8a2cfc32014-05-16 11:19:38 -07002154 *
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002155 * @param win The window to be added
2156 * @param attrs Information about the window to be added
RoboErik8a2cfc32014-05-16 11:19:38 -07002157 *
Jeff Brown98365d72012-08-19 20:30:52 -07002158 * @return If ok, WindowManagerImpl.ADD_OKAY. If too many singletons,
2159 * WindowManagerImpl.ADD_MULTIPLE_SINGLETON
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002160 */
Jose Lima9546b202014-07-02 17:21:51 -07002161 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002162 public int prepareAddWindowLw(WindowState win, WindowManager.LayoutParams attrs) {
2163 switch (attrs.type) {
2164 case TYPE_STATUS_BAR:
Joe Onorato8bc6c512010-06-04 16:21:12 -04002165 mContext.enforceCallingOrSelfPermission(
2166 android.Manifest.permission.STATUS_BAR_SERVICE,
2167 "PhoneWindowManager");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002168 if (mStatusBar != null) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002169 if (mStatusBar.isAlive()) {
Jeff Brown98365d72012-08-19 20:30:52 -07002170 return WindowManagerGlobal.ADD_MULTIPLE_SINGLETON;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002171 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002172 }
2173 mStatusBar = win;
John Spurlock27735a42013-08-14 17:57:38 -04002174 mStatusBarController.setWindow(win);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002175 break;
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002176 case TYPE_NAVIGATION_BAR:
2177 mContext.enforceCallingOrSelfPermission(
2178 android.Manifest.permission.STATUS_BAR_SERVICE,
2179 "PhoneWindowManager");
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002180 if (mNavigationBar != null) {
2181 if (mNavigationBar.isAlive()) {
Jeff Brown98365d72012-08-19 20:30:52 -07002182 return WindowManagerGlobal.ADD_MULTIPLE_SINGLETON;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002183 }
2184 }
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002185 mNavigationBar = win;
John Spurlock27735a42013-08-14 17:57:38 -04002186 mNavigationBarController.setWindow(win);
Craig Mautnereda67292013-04-28 13:50:14 -07002187 if (DEBUG_LAYOUT) Slog.i(TAG, "NAVIGATION BAR: " + mNavigationBar);
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002188 break;
Jim Millere898ac52012-04-06 17:10:57 -07002189 case TYPE_NAVIGATION_BAR_PANEL:
2190 mContext.enforceCallingOrSelfPermission(
2191 android.Manifest.permission.STATUS_BAR_SERVICE,
2192 "PhoneWindowManager");
2193 break;
Dianne Hackborn08743722009-12-21 12:16:51 -08002194 case TYPE_STATUS_BAR_PANEL:
Joe Onorato8bc6c512010-06-04 16:21:12 -04002195 mContext.enforceCallingOrSelfPermission(
2196 android.Manifest.permission.STATUS_BAR_SERVICE,
2197 "PhoneWindowManager");
Dianne Hackborn08743722009-12-21 12:16:51 -08002198 break;
Joe Onorato29fc2c92010-11-24 10:26:50 -08002199 case TYPE_STATUS_BAR_SUB_PANEL:
2200 mContext.enforceCallingOrSelfPermission(
2201 android.Manifest.permission.STATUS_BAR_SERVICE,
2202 "PhoneWindowManager");
Joe Onorato29fc2c92010-11-24 10:26:50 -08002203 break;
Jim Miller5ecd8112013-01-09 18:50:26 -08002204 case TYPE_KEYGUARD_SCRIM:
Jim Miller25190572013-02-28 17:36:24 -08002205 if (mKeyguardScrim != null) {
2206 return WindowManagerGlobal.ADD_MULTIPLE_SINGLETON;
2207 }
Jim Miller5ecd8112013-01-09 18:50:26 -08002208 mKeyguardScrim = win;
2209 break;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002210 }
Jeff Brown98365d72012-08-19 20:30:52 -07002211 return WindowManagerGlobal.ADD_OKAY;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002212 }
2213
2214 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07002215 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002216 public void removeWindowLw(WindowState win) {
2217 if (mStatusBar == win) {
2218 mStatusBar = null;
John Spurlock27735a42013-08-14 17:57:38 -04002219 mStatusBarController.setWindow(null);
Jim Millerc0b676d2013-03-22 16:11:08 -07002220 mKeyguardDelegate.showScrim();
Jim Miller5ecd8112013-01-09 18:50:26 -08002221 } else if (mKeyguardScrim == win) {
2222 Log.v(TAG, "Removing keyguard scrim");
2223 mKeyguardScrim = null;
2224 } if (mNavigationBar == win) {
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002225 mNavigationBar = null;
John Spurlock27735a42013-08-14 17:57:38 -04002226 mNavigationBarController.setWindow(null);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002227 }
2228 }
2229
2230 static final boolean PRINT_ANIM = false;
RoboErik8a2cfc32014-05-16 11:19:38 -07002231
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002232 /** {@inheritDoc} */
Craig Mautner4b71aa12012-12-27 17:20:01 -08002233 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002234 public int selectAnimationLw(WindowState win, int transit) {
2235 if (PRINT_ANIM) Log.i(TAG, "selectAnimation in " + win
2236 + ": transit=" + transit);
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002237 if (win == mStatusBar) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002238 boolean isKeyguard = (win.getAttrs().privateFlags & PRIVATE_FLAG_KEYGUARD) != 0;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002239 if (transit == TRANSIT_EXIT
2240 || transit == TRANSIT_HIDE) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002241 return isKeyguard ? -1 : R.anim.dock_top_exit;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002242 } else if (transit == TRANSIT_ENTER
2243 || transit == TRANSIT_SHOW) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002244 return isKeyguard ? -1 : R.anim.dock_top_enter;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002245 }
2246 } else if (win == mNavigationBar) {
2247 // This can be on either the bottom or the right.
2248 if (mNavigationBarOnBottom) {
Craig Mautner4b71aa12012-12-27 17:20:01 -08002249 if (transit == TRANSIT_EXIT
2250 || transit == TRANSIT_HIDE) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002251 return R.anim.dock_bottom_exit;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002252 } else if (transit == TRANSIT_ENTER
2253 || transit == TRANSIT_SHOW) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002254 return R.anim.dock_bottom_enter;
2255 }
2256 } else {
Craig Mautner4b71aa12012-12-27 17:20:01 -08002257 if (transit == TRANSIT_EXIT
2258 || transit == TRANSIT_HIDE) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002259 return R.anim.dock_right_exit;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002260 } else if (transit == TRANSIT_ENTER
2261 || transit == TRANSIT_SHOW) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002262 return R.anim.dock_right_enter;
2263 }
2264 }
Craig Mautner4b71aa12012-12-27 17:20:01 -08002265 }
2266
2267 if (transit == TRANSIT_PREVIEW_DONE) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002268 if (win.hasAppShownWindows()) {
2269 if (PRINT_ANIM) Log.i(TAG, "**** STARTING EXIT");
2270 return com.android.internal.R.anim.app_starting_exit;
2271 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07002272 } else if (win.getAttrs().type == TYPE_DREAM && mDreamingLockscreen
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002273 && transit == TRANSIT_ENTER) {
2274 // Special case: we are animating in a dream, while the keyguard
2275 // is shown. We don't want an animation on the dream, because
2276 // we need it shown immediately with the keyguard animating away
2277 // to reveal it.
2278 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002279 }
2280
2281 return 0;
2282 }
2283
Craig Mautner3c174372013-02-21 17:54:37 -08002284 @Override
2285 public void selectRotationAnimationLw(int anim[]) {
2286 if (PRINT_ANIM) Slog.i(TAG, "selectRotationAnimation mTopFullscreen="
2287 + mTopFullscreenOpaqueWindowState + " rotationAnimation="
2288 + (mTopFullscreenOpaqueWindowState == null ?
2289 "0" : mTopFullscreenOpaqueWindowState.getAttrs().rotationAnimation));
2290 if (mTopFullscreenOpaqueWindowState != null && mTopIsFullscreen) {
2291 switch (mTopFullscreenOpaqueWindowState.getAttrs().rotationAnimation) {
2292 case ROTATION_ANIMATION_CROSSFADE:
2293 anim[0] = R.anim.rotation_animation_xfade_exit;
2294 anim[1] = R.anim.rotation_animation_enter;
2295 break;
2296 case ROTATION_ANIMATION_JUMPCUT:
2297 anim[0] = R.anim.rotation_animation_jump_exit;
2298 anim[1] = R.anim.rotation_animation_enter;
2299 break;
2300 case ROTATION_ANIMATION_ROTATE:
2301 default:
2302 anim[0] = anim[1] = 0;
2303 break;
2304 }
2305 } else {
2306 anim[0] = anim[1] = 0;
2307 }
2308 }
2309
2310 @Override
2311 public boolean validateRotationAnimationLw(int exitAnimId, int enterAnimId,
2312 boolean forceDefault) {
2313 switch (exitAnimId) {
2314 case R.anim.rotation_animation_xfade_exit:
2315 case R.anim.rotation_animation_jump_exit:
2316 // These are the only cases that matter.
2317 if (forceDefault) {
2318 return false;
2319 }
2320 int anim[] = new int[2];
2321 selectRotationAnimationLw(anim);
2322 return (exitAnimId == anim[0] && enterAnimId == anim[1]);
2323 default:
2324 return true;
2325 }
2326 }
2327
2328 @Override
Jorim Jaggi84a3e7a2014-08-13 17:58:58 +02002329 public Animation createForceHideEnterAnimation(boolean onWallpaper,
2330 boolean goingToNotificationShade) {
2331 if (goingToNotificationShade) {
2332 return AnimationUtils.loadAnimation(mContext, R.anim.lock_screen_behind_enter_fade_in);
Craig Mautnerb8340802014-11-04 15:32:57 -08002333 }
Craig Mautner276a6eb2014-11-04 15:32:57 -08002334
2335 AnimationSet set = (AnimationSet) AnimationUtils.loadAnimation(mContext, onWallpaper ?
2336 R.anim.lock_screen_behind_enter_wallpaper :
2337 R.anim.lock_screen_behind_enter);
2338
2339 // TODO: Use XML interpolators when we have log interpolators available in XML.
2340 final List<Animation> animations = set.getAnimations();
2341 for (int i = animations.size() - 1; i >= 0; --i) {
2342 animations.get(i).setInterpolator(mLogDecelerateInterpolator);
2343 }
2344
2345 return set;
Jorim Jaggi76a16232014-08-08 17:00:47 +02002346 }
2347
2348
2349 @Override
Jorim Jaggi84a3e7a2014-08-13 17:58:58 +02002350 public Animation createForceHideWallpaperExitAnimation(boolean goingToNotificationShade) {
2351 if (goingToNotificationShade) {
2352 return null;
2353 } else {
2354 return AnimationUtils.loadAnimation(mContext, R.anim.lock_screen_wallpaper_exit);
2355 }
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002356 }
John Spurlockc8b46ca2013-04-08 12:59:26 -04002357
2358 private static void awakenDreams() {
2359 IDreamManager dreamManager = getDreamManager();
2360 if (dreamManager != null) {
2361 try {
2362 dreamManager.awaken();
2363 } catch (RemoteException e) {
2364 // fine, stay asleep then
2365 }
2366 }
2367 }
2368
2369 static IDreamManager getDreamManager() {
2370 return IDreamManager.Stub.asInterface(
2371 ServiceManager.checkService(DreamService.DREAM_SERVICE));
2372 }
2373
Tyler Gunnef9f6f92014-09-12 22:16:17 -07002374 TelecomManager getTelecommService() {
2375 return (TelecomManager) mContext.getSystemService(Context.TELECOM_SERVICE);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002376 }
2377
Jeff Brown4d396052010-10-29 21:50:21 -07002378 static IAudioService getAudioService() {
2379 IAudioService audioService = IAudioService.Stub.asInterface(
2380 ServiceManager.checkService(Context.AUDIO_SERVICE));
2381 if (audioService == null) {
2382 Log.w(TAG, "Unable to find IAudioService interface.");
2383 }
2384 return audioService;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002385 }
2386
2387 boolean keyguardOn() {
Jim Millerab954542014-10-10 18:21:49 -07002388 return isKeyguardShowingAndNotOccluded() || inKeyguardRestrictedKeyInputMode();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002389 }
2390
2391 private static final int[] WINDOW_TYPES_WHERE_HOME_DOESNT_WORK = {
2392 WindowManager.LayoutParams.TYPE_SYSTEM_ALERT,
2393 WindowManager.LayoutParams.TYPE_SYSTEM_ERROR,
2394 };
2395
2396 /** {@inheritDoc} */
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002397 @Override
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002398 public long interceptKeyBeforeDispatching(WindowState win, KeyEvent event, int policyFlags) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002399 final boolean keyguardOn = keyguardOn();
Jeff Brown1f245102010-11-18 20:53:46 -08002400 final int keyCode = event.getKeyCode();
2401 final int repeatCount = event.getRepeatCount();
2402 final int metaState = event.getMetaState();
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002403 final int flags = event.getFlags();
Jeff Brown1f245102010-11-18 20:53:46 -08002404 final boolean down = event.getAction() == KeyEvent.ACTION_DOWN;
2405 final boolean canceled = event.isCanceled();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002406
Jeff Brown40013652012-05-16 21:22:36 -07002407 if (DEBUG_INPUT) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002408 Log.d(TAG, "interceptKeyTi keyCode=" + keyCode + " down=" + down + " repeatCount="
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002409 + repeatCount + " keyguardOn=" + keyguardOn + " mHomePressed=" + mHomePressed
2410 + " canceled=" + canceled);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002411 }
2412
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002413 // If we think we might have a volume down & power key chord on the way
2414 // but we're not sure, then tell the dispatcher to wait a little while and
2415 // try again later before dispatching.
Christopher Tatee90585f2012-03-05 18:56:25 -08002416 if (mScreenshotChordEnabled && (flags & KeyEvent.FLAG_FALLBACK) == 0) {
Jeff Brown13f00f02014-10-31 14:45:50 -07002417 if (mScreenshotChordVolumeDownKeyTriggered && !mScreenshotChordPowerKeyTriggered) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002418 final long now = SystemClock.uptimeMillis();
Jeff Brown13f00f02014-10-31 14:45:50 -07002419 final long timeoutTime = mScreenshotChordVolumeDownKeyTime
2420 + SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002421 if (now < timeoutTime) {
2422 return timeoutTime - now;
2423 }
2424 }
2425 if (keyCode == KeyEvent.KEYCODE_VOLUME_DOWN
Jeff Brown13f00f02014-10-31 14:45:50 -07002426 && mScreenshotChordVolumeDownKeyConsumed) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002427 if (!down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07002428 mScreenshotChordVolumeDownKeyConsumed = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002429 }
2430 return -1;
2431 }
2432 }
2433
Michael Wright6a62e552014-06-03 19:19:48 -07002434 // Cancel any pending meta actions if we see any other keys being pressed between the down
2435 // of the meta key and its corresponding up.
Michael Wright251e35d2014-08-22 15:40:27 -07002436 if (mPendingMetaAction && !KeyEvent.isMetaKey(keyCode)) {
Michael Wright6a62e552014-06-03 19:19:48 -07002437 mPendingMetaAction = false;
2438 }
2439
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002440 // First we always handle the home key here, so applications
2441 // can never break it, although if keyguard is on, we do let
2442 // it handle it, because that gives us the correct 5 second
2443 // timeout.
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002444 if (keyCode == KeyEvent.KEYCODE_HOME) {
Michael Jurka7f2668c2012-03-27 07:49:52 -07002445
Jeff Brown49ed71d2010-12-06 17:13:33 -08002446 // If we have released the home key, and didn't do anything else
2447 // while it was pressed, then it is time to go home!
Michael Jurka7f2668c2012-03-27 07:49:52 -07002448 if (!down) {
Jeff Browncaca8812013-05-09 13:34:33 -07002449 cancelPreloadRecentApps();
2450
Jeff Brown49ed71d2010-12-06 17:13:33 -08002451 mHomePressed = false;
Jeff Browncaca8812013-05-09 13:34:33 -07002452 if (mHomeConsumed) {
2453 mHomeConsumed = false;
Michael Jurka7f2668c2012-03-27 07:49:52 -07002454 return -1;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002455 }
Jeff Browncaca8812013-05-09 13:34:33 -07002456
2457 if (canceled) {
2458 Log.i(TAG, "Ignoring HOME; event canceled.");
2459 return -1;
2460 }
2461
Yorke Lee4f803242014-12-15 23:22:06 +00002462 // If an incoming call is ringing, HOME is totally disabled.
2463 // (The user is already on the InCallUI at this point,
2464 // and his ONLY options are to answer or reject the call.)
2465 TelecomManager telecomManager = getTelecommService();
2466 if (telecomManager != null && telecomManager.isRinging()) {
2467 Log.i(TAG, "Ignoring HOME; there's a ringing incoming call.");
2468 return -1;
2469 }
2470
Jeff Browncaca8812013-05-09 13:34:33 -07002471 // Delay handling home if a double-tap is possible.
2472 if (mDoubleTapOnHomeBehavior != DOUBLE_TAP_HOME_NOTHING) {
2473 mHandler.removeCallbacks(mHomeDoubleTapTimeoutRunnable); // just in case
2474 mHomeDoubleTapPending = true;
2475 mHandler.postDelayed(mHomeDoubleTapTimeoutRunnable,
2476 ViewConfiguration.getDoubleTapTimeout());
2477 return -1;
2478 }
2479
Jeff Brown13f00f02014-10-31 14:45:50 -07002480 handleShortPressOnHome();
Jeff Browncaca8812013-05-09 13:34:33 -07002481 return -1;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002482 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002483
2484 // If a system window has focus, then it doesn't make sense
2485 // right now to interact with applications.
2486 WindowManager.LayoutParams attrs = win != null ? win.getAttrs() : null;
2487 if (attrs != null) {
2488 final int type = attrs.type;
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002489 if (type == WindowManager.LayoutParams.TYPE_KEYGUARD_SCRIM
2490 || type == WindowManager.LayoutParams.TYPE_KEYGUARD_DIALOG
2491 || (attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002492 // the "app" is keyguard, so give it the key
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002493 return 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002494 }
2495 final int typeCount = WINDOW_TYPES_WHERE_HOME_DOESNT_WORK.length;
2496 for (int i=0; i<typeCount; i++) {
2497 if (type == WINDOW_TYPES_WHERE_HOME_DOESNT_WORK[i]) {
2498 // don't do anything, but also don't pass it to the app
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002499 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002500 }
2501 }
2502 }
Jeff Browncaca8812013-05-09 13:34:33 -07002503
2504 // Remember that home is pressed and handle special actions.
2505 if (repeatCount == 0) {
2506 mHomePressed = true;
2507 if (mHomeDoubleTapPending) {
2508 mHomeDoubleTapPending = false;
2509 mHandler.removeCallbacks(mHomeDoubleTapTimeoutRunnable);
2510 handleDoubleTapOnHome();
2511 } else if (mLongPressOnHomeBehavior == LONG_PRESS_HOME_RECENT_SYSTEM_UI
2512 || mDoubleTapOnHomeBehavior == DOUBLE_TAP_HOME_RECENT_SYSTEM_UI) {
2513 preloadRecentApps();
Michael Jurka7f2668c2012-03-27 07:49:52 -07002514 }
Jeff Browncaca8812013-05-09 13:34:33 -07002515 } else if ((event.getFlags() & KeyEvent.FLAG_LONG_PRESS) != 0) {
2516 if (!keyguardOn) {
2517 handleLongPressOnHome();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002518 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002519 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002520 return -1;
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002521 } else if (keyCode == KeyEvent.KEYCODE_MENU) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002522 // Hijack modified menu keys for debugging features
2523 final int chordBug = KeyEvent.META_SHIFT_ON;
2524
2525 if (down && repeatCount == 0) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002526 if (mEnableShiftMenuBugReports && (metaState & chordBug) == chordBug) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002527 Intent intent = new Intent(Intent.ACTION_BUG_REPORT);
Dianne Hackborn5ac72a22012-08-29 18:32:08 -07002528 mContext.sendOrderedBroadcastAsUser(intent, UserHandle.CURRENT,
2529 null, null, null, 0, null, null);
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002530 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002531 } else if (SHOW_PROCESSES_ON_ALT_MENU &&
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002532 (metaState & KeyEvent.META_ALT_ON) == KeyEvent.META_ALT_ON) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002533 Intent service = new Intent();
2534 service.setClassName(mContext, "com.android.server.LoadAverageService");
2535 ContentResolver res = mContext.getContentResolver();
Jeff Sharkey8d9a1f62012-10-18 15:38:14 -07002536 boolean shown = Settings.Global.getInt(
2537 res, Settings.Global.SHOW_PROCESSES, 0) != 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002538 if (!shown) {
2539 mContext.startService(service);
2540 } else {
2541 mContext.stopService(service);
2542 }
Jeff Sharkey8d9a1f62012-10-18 15:38:14 -07002543 Settings.Global.putInt(
2544 res, Settings.Global.SHOW_PROCESSES, shown ? 0 : 1);
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002545 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002546 }
2547 }
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002548 } else if (keyCode == KeyEvent.KEYCODE_SEARCH) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002549 if (down) {
2550 if (repeatCount == 0) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002551 mSearchKeyShortcutPending = true;
2552 mConsumeSearchKeyUp = false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002553 }
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002554 } else {
2555 mSearchKeyShortcutPending = false;
2556 if (mConsumeSearchKeyUp) {
2557 mConsumeSearchKeyUp = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002558 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002559 }
2560 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002561 return 0;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002562 } else if (keyCode == KeyEvent.KEYCODE_APP_SWITCH) {
Michael Wrightc9ebea72013-01-16 19:25:02 -08002563 if (!keyguardOn) {
Jeff Browncaca8812013-05-09 13:34:33 -07002564 if (down && repeatCount == 0) {
2565 preloadRecentApps();
2566 } else if (!down) {
2567 toggleRecentApps();
Michael Wrightc9ebea72013-01-16 19:25:02 -08002568 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08002569 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002570 return -1;
Jeff Brownde7a8ea2012-06-13 18:28:57 -07002571 } else if (keyCode == KeyEvent.KEYCODE_ASSIST) {
2572 if (down) {
2573 if (repeatCount == 0) {
2574 mAssistKeyLongPressed = false;
2575 } else if (repeatCount == 1) {
2576 mAssistKeyLongPressed = true;
2577 if (!keyguardOn) {
2578 launchAssistLongPressAction();
2579 }
2580 }
2581 } else {
2582 if (mAssistKeyLongPressed) {
2583 mAssistKeyLongPressed = false;
2584 } else {
2585 if (!keyguardOn) {
2586 launchAssistAction();
2587 }
2588 }
2589 }
2590 return -1;
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002591 } else if (keyCode == KeyEvent.KEYCODE_VOICE_ASSIST) {
2592 if (!down) {
2593 Intent voiceIntent;
Michael Wright869a67c2014-08-26 19:33:06 -07002594 if (!keyguardOn) {
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002595 voiceIntent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
2596 } else {
2597 voiceIntent = new Intent(RecognizerIntent.ACTION_VOICE_SEARCH_HANDS_FREE);
Michael Wright869a67c2014-08-26 19:33:06 -07002598 voiceIntent.putExtra(RecognizerIntent.EXTRA_SECURE, true);
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002599 }
2600 mContext.startActivityAsUser(voiceIntent, UserHandle.CURRENT_OR_SELF);
2601 }
Jeff Sharkey2991fa32012-12-05 18:06:43 -08002602 } else if (keyCode == KeyEvent.KEYCODE_SYSRQ) {
2603 if (down && repeatCount == 0) {
2604 mHandler.post(mScreenshotRunnable);
2605 }
2606 return -1;
Michael Wrightb854e242013-02-05 17:54:02 -08002607 } else if (keyCode == KeyEvent.KEYCODE_BRIGHTNESS_UP
2608 || keyCode == KeyEvent.KEYCODE_BRIGHTNESS_DOWN) {
2609 if (down) {
2610 int direction = keyCode == KeyEvent.KEYCODE_BRIGHTNESS_UP ? 1 : -1;
2611
2612 // Disable autobrightness if it's on
2613 int auto = Settings.System.getIntForUser(
2614 mContext.getContentResolver(),
2615 Settings.System.SCREEN_BRIGHTNESS_MODE,
2616 Settings.System.SCREEN_BRIGHTNESS_MODE_MANUAL,
2617 UserHandle.USER_CURRENT_OR_SELF);
2618 if (auto != 0) {
2619 Settings.System.putIntForUser(mContext.getContentResolver(),
2620 Settings.System.SCREEN_BRIGHTNESS_MODE,
2621 Settings.System.SCREEN_BRIGHTNESS_MODE_MANUAL,
2622 UserHandle.USER_CURRENT_OR_SELF);
2623 }
2624
2625 int min = mPowerManager.getMinimumScreenBrightnessSetting();
2626 int max = mPowerManager.getMaximumScreenBrightnessSetting();
2627 int step = (max - min + BRIGHTNESS_STEPS - 1) / BRIGHTNESS_STEPS * direction;
2628 int brightness = Settings.System.getIntForUser(mContext.getContentResolver(),
2629 Settings.System.SCREEN_BRIGHTNESS,
2630 mPowerManager.getDefaultScreenBrightnessSetting(),
2631 UserHandle.USER_CURRENT_OR_SELF);
2632 brightness += step;
2633 // Make sure we don't go beyond the limits.
2634 brightness = Math.min(max, brightness);
2635 brightness = Math.max(min, brightness);
2636
2637 Settings.System.putIntForUser(mContext.getContentResolver(),
2638 Settings.System.SCREEN_BRIGHTNESS, brightness,
2639 UserHandle.USER_CURRENT_OR_SELF);
Alan Viverette5a399492014-07-14 16:19:38 -07002640 mContext.startActivityAsUser(new Intent(Intent.ACTION_SHOW_BRIGHTNESS_DIALOG),
2641 UserHandle.CURRENT_OR_SELF);
Michael Wrightb854e242013-02-05 17:54:02 -08002642 }
2643 return -1;
Michael Wrightce0c13a2014-07-30 10:49:21 -07002644 } else if (KeyEvent.isMetaKey(keyCode)) {
Michael Wright6a62e552014-06-03 19:19:48 -07002645 if (down) {
2646 mPendingMetaAction = true;
2647 } else if (mPendingMetaAction) {
Michael Wright8ab940a2014-09-01 11:01:27 -07002648 launchAssistAction(Intent.EXTRA_ASSIST_INPUT_HINT_KEYBOARD);
Michael Wright6a62e552014-06-03 19:19:48 -07002649 }
2650 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002651 }
Jeff Browncaab4d02010-12-09 22:13:41 -08002652
Jeff Brownc1fb48d2010-12-08 16:52:09 -08002653 // Shortcuts are invoked through Search+key, so intercept those here
Jeff Browncaab4d02010-12-09 22:13:41 -08002654 // Any printing key that is chorded with Search should be consumed
2655 // even if no shortcut was invoked. This prevents text from being
2656 // inadvertently inserted when using a keyboard that has built-in macro
2657 // shortcut keys (that emit Search+x) and some of them are not registered.
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002658 if (mSearchKeyShortcutPending) {
Jeff Browncaab4d02010-12-09 22:13:41 -08002659 final KeyCharacterMap kcm = event.getKeyCharacterMap();
2660 if (kcm.isPrintingKey(keyCode)) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002661 mConsumeSearchKeyUp = true;
2662 mSearchKeyShortcutPending = false;
Jeff Browncaab4d02010-12-09 22:13:41 -08002663 if (down && repeatCount == 0 && !keyguardOn) {
2664 Intent shortcutIntent = mShortcutManager.getIntent(kcm, keyCode, metaState);
2665 if (shortcutIntent != null) {
2666 shortcutIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Jeff Brownf0a3cc52011-01-26 18:42:46 -08002667 try {
Michael Wright43e27f72013-04-10 14:06:48 -07002668 mContext.startActivityAsUser(shortcutIntent, UserHandle.CURRENT);
Jeff Brownf0a3cc52011-01-26 18:42:46 -08002669 } catch (ActivityNotFoundException ex) {
2670 Slog.w(TAG, "Dropping shortcut key combination because "
2671 + "the activity to which it is registered was not found: "
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002672 + "SEARCH+" + KeyEvent.keyCodeToString(keyCode), ex);
Jeff Brownf0a3cc52011-01-26 18:42:46 -08002673 }
Jeff Browncaab4d02010-12-09 22:13:41 -08002674 } else {
2675 Slog.i(TAG, "Dropping unregistered shortcut key combination: "
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002676 + "SEARCH+" + KeyEvent.keyCodeToString(keyCode));
Jeff Brown49ed71d2010-12-06 17:13:33 -08002677 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002678 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002679 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002680 }
2681 }
2682
Jeff Brown68b909d2011-12-07 16:36:01 -08002683 // Invoke shortcuts using Meta.
Jeff Brown602ab322012-05-16 13:33:47 -07002684 if (down && repeatCount == 0 && !keyguardOn
Jeff Brown68b909d2011-12-07 16:36:01 -08002685 && (metaState & KeyEvent.META_META_ON) != 0) {
2686 final KeyCharacterMap kcm = event.getKeyCharacterMap();
Jeff Brown602ab322012-05-16 13:33:47 -07002687 if (kcm.isPrintingKey(keyCode)) {
2688 Intent shortcutIntent = mShortcutManager.getIntent(kcm, keyCode,
2689 metaState & ~(KeyEvent.META_META_ON
2690 | KeyEvent.META_META_LEFT_ON | KeyEvent.META_META_RIGHT_ON));
2691 if (shortcutIntent != null) {
2692 shortcutIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2693 try {
Michael Wright43e27f72013-04-10 14:06:48 -07002694 mContext.startActivityAsUser(shortcutIntent, UserHandle.CURRENT);
Jeff Brown602ab322012-05-16 13:33:47 -07002695 } catch (ActivityNotFoundException ex) {
2696 Slog.w(TAG, "Dropping shortcut key combination because "
2697 + "the activity to which it is registered was not found: "
2698 + "META+" + KeyEvent.keyCodeToString(keyCode), ex);
2699 }
2700 return -1;
Jeff Brown68b909d2011-12-07 16:36:01 -08002701 }
Jeff Brown68b909d2011-12-07 16:36:01 -08002702 }
2703 }
2704
Jeff Brown6651a632011-11-28 12:59:11 -08002705 // Handle application launch keys.
Jeff Brown602ab322012-05-16 13:33:47 -07002706 if (down && repeatCount == 0 && !keyguardOn) {
Jeff Brown6651a632011-11-28 12:59:11 -08002707 String category = sApplicationLaunchKeyCategories.get(keyCode);
2708 if (category != null) {
Dianne Hackbornf5b86712011-12-05 17:42:41 -08002709 Intent intent = Intent.makeMainSelectorActivity(Intent.ACTION_MAIN, category);
Jeff Brown6651a632011-11-28 12:59:11 -08002710 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2711 try {
Michael Wright43e27f72013-04-10 14:06:48 -07002712 mContext.startActivityAsUser(intent, UserHandle.CURRENT);
Jeff Brown6651a632011-11-28 12:59:11 -08002713 } catch (ActivityNotFoundException ex) {
2714 Slog.w(TAG, "Dropping application launch key because "
2715 + "the activity to which it is registered was not found: "
2716 + "keyCode=" + keyCode + ", category=" + category, ex);
2717 }
Jeff Brown68b909d2011-12-07 16:36:01 -08002718 return -1;
Jeff Brown6651a632011-11-28 12:59:11 -08002719 }
2720 }
2721
Michael Wright61c46752014-08-21 16:57:33 -07002722 // Display task switcher for ALT-TAB.
Jeff Brown68b909d2011-12-07 16:36:01 -08002723 if (down && repeatCount == 0 && keyCode == KeyEvent.KEYCODE_TAB) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07002724 if (mRecentAppsHeldModifiers == 0 && !keyguardOn) {
Jeff Brown68b909d2011-12-07 16:36:01 -08002725 final int shiftlessModifiers = event.getModifiers() & ~KeyEvent.META_SHIFT_MASK;
Michael Wright61c46752014-08-21 16:57:33 -07002726 if (KeyEvent.metaStateHasModifiers(shiftlessModifiers, KeyEvent.META_ALT_ON)) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07002727 mRecentAppsHeldModifiers = shiftlessModifiers;
2728 showRecentApps(true);
Jeff Brown68b909d2011-12-07 16:36:01 -08002729 return -1;
2730 }
2731 }
Winson Chung1e8d71b2014-05-16 17:05:22 -07002732 } else if (!down && mRecentAppsHeldModifiers != 0
2733 && (metaState & mRecentAppsHeldModifiers) == 0) {
2734 mRecentAppsHeldModifiers = 0;
Winson Chungcdcd4872014-08-05 18:00:13 -07002735 hideRecentApps(true, false);
Jeff Brown68b909d2011-12-07 16:36:01 -08002736 }
2737
Jeff Browncf39bdf2012-05-18 14:41:19 -07002738 // Handle keyboard language switching.
2739 if (down && repeatCount == 0
2740 && (keyCode == KeyEvent.KEYCODE_LANGUAGE_SWITCH
2741 || (keyCode == KeyEvent.KEYCODE_SPACE
2742 && (metaState & KeyEvent.META_CTRL_MASK) != 0))) {
2743 int direction = (metaState & KeyEvent.META_SHIFT_MASK) != 0 ? -1 : 1;
2744 mWindowManagerFuncs.switchKeyboardLayout(event.getDeviceId(), direction);
2745 return -1;
2746 }
2747 if (mLanguageSwitchKeyPressed && !down
2748 && (keyCode == KeyEvent.KEYCODE_LANGUAGE_SWITCH
2749 || keyCode == KeyEvent.KEYCODE_SPACE)) {
2750 mLanguageSwitchKeyPressed = false;
2751 return -1;
2752 }
2753
Jeff Brown13f00f02014-10-31 14:45:50 -07002754 if (isValidGlobalKey(keyCode)
2755 && mGlobalKeyManager.handleGlobalKey(mContext, keyCode, event)) {
Justin Kohd378ad72013-04-01 12:18:26 -07002756 return -1;
2757 }
2758
Michael Wright6a62e552014-06-03 19:19:48 -07002759 // Reserve all the META modifier combos for system behavior
Michael Wrightce0c13a2014-07-30 10:49:21 -07002760 if ((metaState & KeyEvent.META_META_ON) != 0) {
Michael Wright6a62e552014-06-03 19:19:48 -07002761 return -1;
2762 }
2763
Jeff Brown68b909d2011-12-07 16:36:01 -08002764 // Let the application handle the key.
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002765 return 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002766 }
2767
Jeff Brown3915bb82010-11-05 15:02:16 -07002768 /** {@inheritDoc} */
2769 @Override
Jeff Brown49ed71d2010-12-06 17:13:33 -08002770 public KeyEvent dispatchUnhandledKey(WindowState win, KeyEvent event, int policyFlags) {
Jeff Brown54875002011-04-06 15:33:01 -07002771 // Note: This method is only called if the initial down was unhandled.
Jeff Brown40013652012-05-16 21:22:36 -07002772 if (DEBUG_INPUT) {
Jeff Brown1f245102010-11-18 20:53:46 -08002773 Slog.d(TAG, "Unhandled key: win=" + win + ", action=" + event.getAction()
2774 + ", flags=" + event.getFlags()
2775 + ", keyCode=" + event.getKeyCode()
2776 + ", scanCode=" + event.getScanCode()
2777 + ", metaState=" + event.getMetaState()
2778 + ", repeatCount=" + event.getRepeatCount()
2779 + ", policyFlags=" + policyFlags);
Jeff Brown3915bb82010-11-05 15:02:16 -07002780 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08002781
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002782 KeyEvent fallbackEvent = null;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002783 if ((event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
2784 final KeyCharacterMap kcm = event.getKeyCharacterMap();
Jeff Brownc1fb48d2010-12-08 16:52:09 -08002785 final int keyCode = event.getKeyCode();
2786 final int metaState = event.getMetaState();
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002787 final boolean initialDown = event.getAction() == KeyEvent.ACTION_DOWN
2788 && event.getRepeatCount() == 0;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002789
Jeff Brown54875002011-04-06 15:33:01 -07002790 // Check for fallback actions specified by the key character map.
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002791 final FallbackAction fallbackAction;
2792 if (initialDown) {
2793 fallbackAction = kcm.getFallbackAction(keyCode, metaState);
2794 } else {
2795 fallbackAction = mFallbackActions.get(keyCode);
2796 }
2797
2798 if (fallbackAction != null) {
Jeff Brown40013652012-05-16 21:22:36 -07002799 if (DEBUG_INPUT) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002800 Slog.d(TAG, "Fallback: keyCode=" + fallbackAction.keyCode
2801 + " metaState=" + Integer.toHexString(fallbackAction.metaState));
Jeff Brown49ed71d2010-12-06 17:13:33 -08002802 }
2803
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002804 final int flags = event.getFlags() | KeyEvent.FLAG_FALLBACK;
2805 fallbackEvent = KeyEvent.obtain(
Jeff Brown49ed71d2010-12-06 17:13:33 -08002806 event.getDownTime(), event.getEventTime(),
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002807 event.getAction(), fallbackAction.keyCode,
2808 event.getRepeatCount(), fallbackAction.metaState,
Jeff Brown49ed71d2010-12-06 17:13:33 -08002809 event.getDeviceId(), event.getScanCode(),
2810 flags, event.getSource(), null);
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002811
2812 if (!interceptFallback(win, fallbackEvent, policyFlags)) {
2813 fallbackEvent.recycle();
2814 fallbackEvent = null;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002815 }
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002816
2817 if (initialDown) {
2818 mFallbackActions.put(keyCode, fallbackAction);
2819 } else if (event.getAction() == KeyEvent.ACTION_UP) {
2820 mFallbackActions.remove(keyCode);
2821 fallbackAction.recycle();
2822 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08002823 }
2824 }
2825
Jeff Brown40013652012-05-16 21:22:36 -07002826 if (DEBUG_INPUT) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002827 if (fallbackEvent == null) {
2828 Slog.d(TAG, "No fallback.");
2829 } else {
2830 Slog.d(TAG, "Performing fallback: " + fallbackEvent);
2831 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08002832 }
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002833 return fallbackEvent;
Jeff Brown3915bb82010-11-05 15:02:16 -07002834 }
2835
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002836 private boolean interceptFallback(WindowState win, KeyEvent fallbackEvent, int policyFlags) {
Jeff Brown037c33e2014-04-09 00:31:55 -07002837 int actions = interceptKeyBeforeQueueing(fallbackEvent, policyFlags);
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002838 if ((actions & ACTION_PASS_TO_USER) != 0) {
2839 long delayMillis = interceptKeyBeforeDispatching(
2840 win, fallbackEvent, policyFlags);
2841 if (delayMillis == 0) {
2842 return true;
2843 }
2844 }
2845 return false;
Jeff Brown6f2fba42011-02-19 01:08:02 -08002846 }
2847
Jeff Brownde7a8ea2012-06-13 18:28:57 -07002848 private void launchAssistLongPressAction() {
2849 performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false);
2850 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_ASSIST);
2851
2852 // launch the search activity
2853 Intent intent = new Intent(Intent.ACTION_SEARCH_LONG_PRESS);
2854 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2855 try {
RoboErik8a2cfc32014-05-16 11:19:38 -07002856 // TODO: This only stops the factory-installed search manager.
Jim Miller45308b12012-06-18 19:23:39 -07002857 // Need to formalize an API to handle others
Jeff Brownde7a8ea2012-06-13 18:28:57 -07002858 SearchManager searchManager = getSearchManager();
2859 if (searchManager != null) {
2860 searchManager.stopSearch();
2861 }
Michael Wright43e27f72013-04-10 14:06:48 -07002862 mContext.startActivityAsUser(intent, UserHandle.CURRENT);
Jeff Brownde7a8ea2012-06-13 18:28:57 -07002863 } catch (ActivityNotFoundException e) {
2864 Slog.w(TAG, "No activity to handle assist long press action.", e);
2865 }
2866 }
2867
2868 private void launchAssistAction() {
Michael Wright8ab940a2014-09-01 11:01:27 -07002869 launchAssistAction(null);
2870 }
2871
2872 private void launchAssistAction(String hint) {
Jeff Brownde7a8ea2012-06-13 18:28:57 -07002873 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_ASSIST);
Amith Yamasanic1d07a42012-08-14 09:32:02 -07002874 Intent intent = ((SearchManager) mContext.getSystemService(Context.SEARCH_SERVICE))
Dianne Hackbornf9c5e0f2013-01-23 14:39:13 -08002875 .getAssistIntent(mContext, true, UserHandle.USER_CURRENT);
Jim Miller45308b12012-06-18 19:23:39 -07002876 if (intent != null) {
Michael Wright8ab940a2014-09-01 11:01:27 -07002877 if (hint != null) {
2878 intent.putExtra(hint, true);
2879 }
Jim Miller45308b12012-06-18 19:23:39 -07002880 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
2881 | Intent.FLAG_ACTIVITY_SINGLE_TOP
2882 | Intent.FLAG_ACTIVITY_CLEAR_TOP);
2883 try {
Michael Wright43e27f72013-04-10 14:06:48 -07002884 mContext.startActivityAsUser(intent, UserHandle.CURRENT);
Jim Miller45308b12012-06-18 19:23:39 -07002885 } catch (ActivityNotFoundException e) {
2886 Slog.w(TAG, "No activity to handle assist action.", e);
Jeff Brownde7a8ea2012-06-13 18:28:57 -07002887 }
2888 }
2889 }
2890
2891 private SearchManager getSearchManager() {
2892 if (mSearchManager == null) {
2893 mSearchManager = (SearchManager) mContext.getSystemService(Context.SEARCH_SERVICE);
2894 }
2895 return mSearchManager;
2896 }
2897
Jeff Browncaca8812013-05-09 13:34:33 -07002898 private void preloadRecentApps() {
2899 mPreloadedRecentApps = true;
2900 try {
2901 IStatusBarService statusbar = getStatusBarService();
2902 if (statusbar != null) {
2903 statusbar.preloadRecentApps();
2904 }
2905 } catch (RemoteException e) {
2906 Slog.e(TAG, "RemoteException when preloading recent apps", e);
2907 // re-acquire status bar service next time it is needed.
2908 mStatusBarService = null;
2909 }
2910 }
2911
2912 private void cancelPreloadRecentApps() {
2913 if (mPreloadedRecentApps) {
2914 mPreloadedRecentApps = false;
2915 try {
2916 IStatusBarService statusbar = getStatusBarService();
2917 if (statusbar != null) {
2918 statusbar.cancelPreloadRecentApps();
2919 }
2920 } catch (RemoteException e) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07002921 Slog.e(TAG, "RemoteException when cancelling recent apps preload", e);
Jeff Browncaca8812013-05-09 13:34:33 -07002922 // re-acquire status bar service next time it is needed.
2923 mStatusBarService = null;
2924 }
2925 }
2926 }
2927
2928 private void toggleRecentApps() {
2929 mPreloadedRecentApps = false; // preloading no longer needs to be canceled
Jeff Browncaca8812013-05-09 13:34:33 -07002930 try {
2931 IStatusBarService statusbar = getStatusBarService();
2932 if (statusbar != null) {
2933 statusbar.toggleRecentApps();
2934 }
2935 } catch (RemoteException e) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07002936 Slog.e(TAG, "RemoteException when toggling recent apps", e);
2937 // re-acquire status bar service next time it is needed.
2938 mStatusBarService = null;
2939 }
2940 }
2941
Craig Mautner84984fa2014-06-19 11:19:20 -07002942 @Override
2943 public void showRecentApps() {
2944 mHandler.removeMessages(MSG_DISPATCH_SHOW_RECENTS);
2945 mHandler.sendEmptyMessage(MSG_DISPATCH_SHOW_RECENTS);
2946 }
2947
Winson Chung1e8d71b2014-05-16 17:05:22 -07002948 private void showRecentApps(boolean triggeredFromAltTab) {
2949 mPreloadedRecentApps = false; // preloading no longer needs to be canceled
2950 try {
2951 IStatusBarService statusbar = getStatusBarService();
2952 if (statusbar != null) {
2953 statusbar.showRecentApps(triggeredFromAltTab);
2954 }
2955 } catch (RemoteException e) {
Jeff Browncaca8812013-05-09 13:34:33 -07002956 Slog.e(TAG, "RemoteException when showing recent apps", e);
2957 // re-acquire status bar service next time it is needed.
2958 mStatusBarService = null;
2959 }
2960 }
2961
Winson Chungcdcd4872014-08-05 18:00:13 -07002962 private void hideRecentApps(boolean triggeredFromAltTab, boolean triggeredFromHome) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07002963 mPreloadedRecentApps = false; // preloading no longer needs to be canceled
2964 try {
2965 IStatusBarService statusbar = getStatusBarService();
2966 if (statusbar != null) {
Winson Chungcdcd4872014-08-05 18:00:13 -07002967 statusbar.hideRecentApps(triggeredFromAltTab, triggeredFromHome);
Winson Chung1e8d71b2014-05-16 17:05:22 -07002968 }
2969 } catch (RemoteException e) {
2970 Slog.e(TAG, "RemoteException when closing recent apps", e);
2971 // re-acquire status bar service next time it is needed.
2972 mStatusBarService = null;
2973 }
2974 }
2975
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002976 /**
2977 * A home key -> launch home action was detected. Take the appropriate action
2978 * given the situation with the keyguard.
2979 */
2980 void launchHomeFromHotKey() {
Jim Millerab954542014-10-10 18:21:49 -07002981 if (isKeyguardShowingAndNotOccluded()) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002982 // don't launch home if keyguard showing
Jim Miller5ecd8112013-01-09 18:50:26 -08002983 } else if (!mHideLockScreen && mKeyguardDelegate.isInputRestricted()) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002984 // when in keyguard restricted mode, must first verify unlock
2985 // before launching home
Jim Miller5ecd8112013-01-09 18:50:26 -08002986 mKeyguardDelegate.verifyUnlock(new OnKeyguardExitResult() {
Jose Lima9546b202014-07-02 17:21:51 -07002987 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002988 public void onKeyguardExitResult(boolean success) {
2989 if (success) {
Dianne Hackborn256dd3b2009-05-19 18:51:21 -07002990 try {
2991 ActivityManagerNative.getDefault().stopAppSwitches();
2992 } catch (RemoteException e) {
2993 }
Joe Onoratof275f0c2009-11-24 16:11:13 -05002994 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_HOME_KEY);
Bryce Lee01b0c5f2015-02-05 18:24:04 -08002995 startDockOrHome(true /*fromHomeKey*/);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002996 }
2997 }
2998 });
2999 } else {
3000 // no keyguard stuff to worry about, just launch home!
Dianne Hackborn256dd3b2009-05-19 18:51:21 -07003001 try {
3002 ActivityManagerNative.getDefault().stopAppSwitches();
3003 } catch (RemoteException e) {
3004 }
Winson Chungd543c1b2014-06-23 15:06:45 -07003005 if (mRecentsVisible) {
3006 // Hide Recents and notify it to launch Home
3007 awakenDreams();
3008 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_HOME_KEY);
Winson Chungcdcd4872014-08-05 18:00:13 -07003009 hideRecentApps(false, true);
Winson Chungd543c1b2014-06-23 15:06:45 -07003010 } else {
3011 // Otherwise, just launch Home
3012 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_HOME_KEY);
Bryce Lee01b0c5f2015-02-05 18:24:04 -08003013 startDockOrHome(true /*fromHomeKey*/);
Winson Chungd543c1b2014-06-23 15:06:45 -07003014 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003015 }
3016 }
3017
John Spurlock04db1762013-05-13 12:46:41 -04003018 private final Runnable mClearHideNavigationFlag = new Runnable() {
3019 @Override
3020 public void run() {
3021 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
3022 // Clear flags.
3023 mForceClearedSystemUiFlags &=
3024 ~View.SYSTEM_UI_FLAG_HIDE_NAVIGATION;
3025 }
3026 mWindowManagerFuncs.reevaluateStatusBarVisibility();
Dianne Hackborne26ab702011-10-16 13:21:33 -07003027 }
3028 };
3029
3030 /**
3031 * Input handler used while nav bar is hidden. Captures any touch on the screen,
3032 * to determine when the nav bar should be shown and prevent applications from
3033 * receiving those touches.
3034 */
Jeff Brown32cbc38552011-12-01 14:01:49 -08003035 final class HideNavInputEventReceiver extends InputEventReceiver {
3036 public HideNavInputEventReceiver(InputChannel inputChannel, Looper looper) {
3037 super(inputChannel, looper);
3038 }
3039
Dianne Hackborndf89e652011-10-06 22:35:11 -07003040 @Override
Jeff Brown32cbc38552011-12-01 14:01:49 -08003041 public void onInputEvent(InputEvent event) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07003042 boolean handled = false;
3043 try {
Jeff Brown4952dfd2011-11-30 19:23:22 -08003044 if (event instanceof MotionEvent
3045 && (event.getSource() & InputDevice.SOURCE_CLASS_POINTER) != 0) {
3046 final MotionEvent motionEvent = (MotionEvent)event;
3047 if (motionEvent.getAction() == MotionEvent.ACTION_DOWN) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07003048 // When the user taps down, we re-show the nav bar.
3049 boolean changed = false;
John Spurlock04db1762013-05-13 12:46:41 -04003050 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003051 // Any user activity always causes us to show the
3052 // navigation controls, if they had been hidden.
3053 // We also clear the low profile and only content
3054 // flags so that tapping on the screen will atomically
3055 // restore all currently hidden screen decorations.
3056 int newVal = mResettingSystemUiFlags |
3057 View.SYSTEM_UI_FLAG_HIDE_NAVIGATION |
3058 View.SYSTEM_UI_FLAG_LOW_PROFILE |
3059 View.SYSTEM_UI_FLAG_FULLSCREEN;
Dianne Hackborne26ab702011-10-16 13:21:33 -07003060 if (mResettingSystemUiFlags != newVal) {
3061 mResettingSystemUiFlags = newVal;
Dianne Hackborndf89e652011-10-06 22:35:11 -07003062 changed = true;
3063 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07003064 // We don't allow the system's nav bar to be hidden
3065 // again for 1 second, to prevent applications from
3066 // spamming us and keeping it from being shown.
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003067 newVal = mForceClearedSystemUiFlags |
3068 View.SYSTEM_UI_FLAG_HIDE_NAVIGATION;
Dianne Hackborne26ab702011-10-16 13:21:33 -07003069 if (mForceClearedSystemUiFlags != newVal) {
3070 mForceClearedSystemUiFlags = newVal;
3071 changed = true;
John Spurlock04db1762013-05-13 12:46:41 -04003072 mHandler.postDelayed(mClearHideNavigationFlag, 1000);
Dianne Hackborne26ab702011-10-16 13:21:33 -07003073 }
Dianne Hackborndf89e652011-10-06 22:35:11 -07003074 }
3075 if (changed) {
3076 mWindowManagerFuncs.reevaluateStatusBarVisibility();
3077 }
3078 }
3079 }
3080 } finally {
Jeff Brown32cbc38552011-12-01 14:01:49 -08003081 finishInputEvent(event, handled);
Dianne Hackborndf89e652011-10-06 22:35:11 -07003082 }
3083 }
Jeff Brown32cbc38552011-12-01 14:01:49 -08003084 }
3085 final InputEventReceiver.Factory mHideNavInputEventReceiverFactory =
3086 new InputEventReceiver.Factory() {
3087 @Override
3088 public InputEventReceiver createInputEventReceiver(
3089 InputChannel inputChannel, Looper looper) {
3090 return new HideNavInputEventReceiver(inputChannel, looper);
3091 }
Dianne Hackborndf89e652011-10-06 22:35:11 -07003092 };
3093
3094 @Override
3095 public int adjustSystemUiVisibilityLw(int visibility) {
John Spurlock5b9145b2013-08-20 15:13:47 -04003096 mStatusBarController.adjustSystemUiVisibilityLw(mLastSystemUiFlags, visibility);
3097 mNavigationBarController.adjustSystemUiVisibilityLw(mLastSystemUiFlags, visibility);
Winson Chungd42a6cf2014-06-03 16:24:04 -07003098 mRecentsVisible = (visibility & View.RECENT_APPS_VISIBLE) > 0;
John Spurlock27735a42013-08-14 17:57:38 -04003099
Dianne Hackborndf89e652011-10-06 22:35:11 -07003100 // Reset any bits in mForceClearingStatusBarVisibility that
3101 // are now clear.
Dianne Hackborne26ab702011-10-16 13:21:33 -07003102 mResettingSystemUiFlags &= visibility;
Dianne Hackborndf89e652011-10-06 22:35:11 -07003103 // Clear any bits in the new visibility that are currently being
3104 // force cleared, before reporting it.
Dianne Hackborne26ab702011-10-16 13:21:33 -07003105 return visibility & ~mResettingSystemUiFlags
3106 & ~mForceClearedSystemUiFlags;
Dianne Hackborndf89e652011-10-06 22:35:11 -07003107 }
3108
Craig Mautner69b08182012-09-05 13:07:13 -07003109 @Override
Adrian Roos37d7a682014-11-06 18:15:16 +01003110 public void getInsetHintLw(WindowManager.LayoutParams attrs, Rect outContentInsets,
3111 Rect outStableInsets) {
John Spurlockc6d1c602014-01-17 15:22:06 -05003112 final int fl = PolicyControl.getWindowFlags(null, attrs);
John Spurlock1db8b682014-02-18 11:18:59 -05003113 final int sysuiVis = PolicyControl.getSystemUiVisibility(null, attrs);
3114 final int systemUiVisibility = (sysuiVis | attrs.subtreeSystemUiVisibility);
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003115
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003116 if ((fl & (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR))
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003117 == (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR)) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003118 int availRight, availBottom;
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07003119 if (canHideNavigationBar() &&
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003120 (systemUiVisibility & View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION) != 0) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003121 availRight = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3122 availBottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
3123 } else {
3124 availRight = mRestrictedScreenLeft + mRestrictedScreenWidth;
3125 availBottom = mRestrictedScreenTop + mRestrictedScreenHeight;
3126 }
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003127 if ((systemUiVisibility & View.SYSTEM_UI_FLAG_LAYOUT_STABLE) != 0) {
3128 if ((fl & FLAG_FULLSCREEN) != 0) {
Adrian Roos37d7a682014-11-06 18:15:16 +01003129 outContentInsets.set(mStableFullscreenLeft, mStableFullscreenTop,
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003130 availRight - mStableFullscreenRight,
3131 availBottom - mStableFullscreenBottom);
3132 } else {
Adrian Roos37d7a682014-11-06 18:15:16 +01003133 outContentInsets.set(mStableLeft, mStableTop,
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003134 availRight - mStableRight, availBottom - mStableBottom);
3135 }
Dianne Hackbornc652de82013-02-15 16:32:56 -08003136 } else if ((fl & FLAG_FULLSCREEN) != 0 || (fl & FLAG_LAYOUT_IN_OVERSCAN) != 0) {
Adrian Roos37d7a682014-11-06 18:15:16 +01003137 outContentInsets.setEmpty();
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003138 } else if ((systemUiVisibility & (View.SYSTEM_UI_FLAG_FULLSCREEN
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003139 | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN)) == 0) {
Adrian Roos37d7a682014-11-06 18:15:16 +01003140 outContentInsets.set(mCurLeft, mCurTop,
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003141 availRight - mCurRight, availBottom - mCurBottom);
3142 } else {
Adrian Roos37d7a682014-11-06 18:15:16 +01003143 outContentInsets.set(mCurLeft, mCurTop,
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003144 availRight - mCurRight, availBottom - mCurBottom);
3145 }
Adrian Roos37d7a682014-11-06 18:15:16 +01003146
3147 outStableInsets.set(mStableLeft, mStableTop,
3148 availRight - mStableRight, availBottom - mStableBottom);
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003149 return;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003150 }
Adrian Roos37d7a682014-11-06 18:15:16 +01003151 outContentInsets.setEmpty();
3152 outStableInsets.setEmpty();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003153 }
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003154
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003155 /** {@inheritDoc} */
Craig Mautner69b08182012-09-05 13:07:13 -07003156 @Override
3157 public void beginLayoutLw(boolean isDefaultDisplay, int displayWidth, int displayHeight,
3158 int displayRotation) {
Dianne Hackbornc652de82013-02-15 16:32:56 -08003159 final int overscanLeft, overscanTop, overscanRight, overscanBottom;
3160 if (isDefaultDisplay) {
3161 switch (displayRotation) {
3162 case Surface.ROTATION_90:
3163 overscanLeft = mOverscanTop;
3164 overscanTop = mOverscanRight;
3165 overscanRight = mOverscanBottom;
3166 overscanBottom = mOverscanLeft;
3167 break;
3168 case Surface.ROTATION_180:
3169 overscanLeft = mOverscanRight;
3170 overscanTop = mOverscanBottom;
3171 overscanRight = mOverscanLeft;
3172 overscanBottom = mOverscanTop;
3173 break;
3174 case Surface.ROTATION_270:
3175 overscanLeft = mOverscanBottom;
3176 overscanTop = mOverscanLeft;
3177 overscanRight = mOverscanTop;
3178 overscanBottom = mOverscanRight;
3179 break;
3180 default:
3181 overscanLeft = mOverscanLeft;
3182 overscanTop = mOverscanTop;
3183 overscanRight = mOverscanRight;
3184 overscanBottom = mOverscanBottom;
3185 break;
3186 }
3187 } else {
3188 overscanLeft = 0;
3189 overscanTop = 0;
3190 overscanRight = 0;
3191 overscanBottom = 0;
3192 }
Dianne Hackborn313440842013-02-19 19:22:59 -08003193 mOverscanScreenLeft = mRestrictedOverscanScreenLeft = 0;
3194 mOverscanScreenTop = mRestrictedOverscanScreenTop = 0;
3195 mOverscanScreenWidth = mRestrictedOverscanScreenWidth = displayWidth;
3196 mOverscanScreenHeight = mRestrictedOverscanScreenHeight = displayHeight;
Dianne Hackbornc652de82013-02-15 16:32:56 -08003197 mSystemLeft = 0;
3198 mSystemTop = 0;
3199 mSystemRight = displayWidth;
3200 mSystemBottom = displayHeight;
3201 mUnrestrictedScreenLeft = overscanLeft;
3202 mUnrestrictedScreenTop = overscanTop;
3203 mUnrestrictedScreenWidth = displayWidth - overscanLeft - overscanRight;
3204 mUnrestrictedScreenHeight = displayHeight - overscanTop - overscanBottom;
3205 mRestrictedScreenLeft = mUnrestrictedScreenLeft;
3206 mRestrictedScreenTop = mUnrestrictedScreenTop;
John Spurlockad3e6cb2013-04-30 08:47:43 -04003207 mRestrictedScreenWidth = mSystemGestures.screenWidth = mUnrestrictedScreenWidth;
3208 mRestrictedScreenHeight = mSystemGestures.screenHeight = mUnrestrictedScreenHeight;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003209 mDockLeft = mContentLeft = mVoiceContentLeft = mStableLeft = mStableFullscreenLeft
Dianne Hackbornc652de82013-02-15 16:32:56 -08003210 = mCurLeft = mUnrestrictedScreenLeft;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003211 mDockTop = mContentTop = mVoiceContentTop = mStableTop = mStableFullscreenTop
Dianne Hackbornc652de82013-02-15 16:32:56 -08003212 = mCurTop = mUnrestrictedScreenTop;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003213 mDockRight = mContentRight = mVoiceContentRight = mStableRight = mStableFullscreenRight
Dianne Hackbornc652de82013-02-15 16:32:56 -08003214 = mCurRight = displayWidth - overscanRight;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003215 mDockBottom = mContentBottom = mVoiceContentBottom = mStableBottom = mStableFullscreenBottom
Dianne Hackbornc652de82013-02-15 16:32:56 -08003216 = mCurBottom = displayHeight - overscanBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003217 mDockLayer = 0x10000000;
Dianne Hackborn5c58de32012-04-28 19:52:37 -07003218 mStatusBarLayer = -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003219
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003220 // start with the current dock rect, which will be (0,0,displayWidth,displayHeight)
3221 final Rect pf = mTmpParentFrame;
3222 final Rect df = mTmpDisplayFrame;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003223 final Rect of = mTmpOverscanFrame;
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003224 final Rect vf = mTmpVisibleFrame;
John Spurlock46646232013-09-30 22:32:42 -04003225 final Rect dcf = mTmpDecorFrame;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003226 pf.left = df.left = of.left = vf.left = mDockLeft;
3227 pf.top = df.top = of.top = vf.top = mDockTop;
3228 pf.right = df.right = of.right = vf.right = mDockRight;
3229 pf.bottom = df.bottom = of.bottom = vf.bottom = mDockBottom;
John Spurlock46646232013-09-30 22:32:42 -04003230 dcf.setEmpty(); // Decor frame N/A for system bars.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003231
Craig Mautner69b08182012-09-05 13:07:13 -07003232 if (isDefaultDisplay) {
3233 // For purposes of putting out fake window up to steal focus, we will
3234 // drive nav being hidden only by whether it is requested.
John Spurlocke1f366f2013-08-05 12:22:40 -04003235 final int sysui = mLastSystemUiFlags;
3236 boolean navVisible = (sysui & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) == 0;
Adrian Roosea562512014-05-05 13:33:03 +02003237 boolean navTranslucent = (sysui
3238 & (View.NAVIGATION_BAR_TRANSLUCENT | View.SYSTEM_UI_TRANSPARENT)) != 0;
John Spurlockf1a36642013-10-12 17:50:42 -04003239 boolean immersive = (sysui & View.SYSTEM_UI_FLAG_IMMERSIVE) != 0;
3240 boolean immersiveSticky = (sysui & View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY) != 0;
3241 boolean navAllowedHidden = immersive || immersiveSticky;
3242 navTranslucent &= !immersiveSticky; // transient trumps translucent
Adrian Roos4fb3ee32014-08-22 19:29:09 +02003243 boolean isKeyguardShowing = isStatusBarKeyguard() && !mHideLockScreen;
3244 if (!isKeyguardShowing) {
3245 navTranslucent &= areTranslucentBarsAllowed();
3246 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07003247
Craig Mautner69b08182012-09-05 13:07:13 -07003248 // When the navigation bar isn't visible, we put up a fake
3249 // input window to catch all touch events. This way we can
3250 // detect when the user presses anywhere to bring back the nav
3251 // bar and ensure the application doesn't see the event.
John Spurlockf1a36642013-10-12 17:50:42 -04003252 if (navVisible || navAllowedHidden) {
Craig Mautner69b08182012-09-05 13:07:13 -07003253 if (mHideNavFakeWindow != null) {
3254 mHideNavFakeWindow.dismiss();
3255 mHideNavFakeWindow = null;
3256 }
3257 } else if (mHideNavFakeWindow == null) {
3258 mHideNavFakeWindow = mWindowManagerFuncs.addFakeWindow(
3259 mHandler.getLooper(), mHideNavInputEventReceiverFactory,
Adam Lesinski95c42972013-10-02 10:13:27 -07003260 "hidden nav", WindowManager.LayoutParams.TYPE_HIDDEN_NAV_CONSUMER, 0,
Craig Mautner69b08182012-09-05 13:07:13 -07003261 0, false, false, true);
Dianne Hackborne26ab702011-10-16 13:21:33 -07003262 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07003263
Craig Mautner69b08182012-09-05 13:07:13 -07003264 // For purposes of positioning and showing the nav bar, if we have
3265 // decided that it can't be hidden (because of the screen aspect ratio),
3266 // then take that into account.
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07003267 navVisible |= !canHideNavigationBar();
Dianne Hackbornf87d1962012-04-04 12:48:24 -07003268
John Spurlockad3e6cb2013-04-30 08:47:43 -04003269 boolean updateSysUiVisibility = false;
Craig Mautner69b08182012-09-05 13:07:13 -07003270 if (mNavigationBar != null) {
John Spurlock27735a42013-08-14 17:57:38 -04003271 boolean transientNavBarShowing = mNavigationBarController.isTransientShowing();
Craig Mautner69b08182012-09-05 13:07:13 -07003272 // Force the navigation bar to its appropriate place and
3273 // size. We need to do this directly, instead of relying on
3274 // it to bubble up from the nav bar, because this needs to
3275 // change atomically with screen rotations.
3276 mNavigationBarOnBottom = (!mNavigationBarCanMove || displayWidth < displayHeight);
3277 if (mNavigationBarOnBottom) {
3278 // It's a system nav bar or a portrait screen; nav bar goes on bottom.
Dianne Hackbornc652de82013-02-15 16:32:56 -08003279 int top = displayHeight - overscanBottom
3280 - mNavigationBarHeightForRotation[displayRotation];
3281 mTmpNavigationFrame.set(0, top, displayWidth, displayHeight - overscanBottom);
Craig Mautner69b08182012-09-05 13:07:13 -07003282 mStableBottom = mStableFullscreenBottom = mTmpNavigationFrame.top;
John Spurlockf95b89a2013-10-10 22:10:42 -04003283 if (transientNavBarShowing) {
John Spurlock27735a42013-08-14 17:57:38 -04003284 mNavigationBarController.setBarShowingLw(true);
John Spurlockad3e6cb2013-04-30 08:47:43 -04003285 } else if (navVisible) {
John Spurlock27735a42013-08-14 17:57:38 -04003286 mNavigationBarController.setBarShowingLw(true);
Craig Mautner69b08182012-09-05 13:07:13 -07003287 mDockBottom = mTmpNavigationFrame.top;
Dianne Hackborn313440842013-02-19 19:22:59 -08003288 mRestrictedScreenHeight = mDockBottom - mRestrictedScreenTop;
3289 mRestrictedOverscanScreenHeight = mDockBottom - mRestrictedOverscanScreenTop;
Craig Mautner69b08182012-09-05 13:07:13 -07003290 } else {
3291 // We currently want to hide the navigation UI.
John Spurlock27735a42013-08-14 17:57:38 -04003292 mNavigationBarController.setBarShowingLw(false);
Craig Mautner69b08182012-09-05 13:07:13 -07003293 }
John Spurlockc6d1c602014-01-17 15:22:06 -05003294 if (navVisible && !navTranslucent && !navAllowedHidden
3295 && !mNavigationBar.isAnimatingLw()
John Spurlockbd957402013-10-03 11:38:39 -04003296 && !mNavigationBarController.wasRecentlyTranslucent()) {
John Spurlocke1f366f2013-08-05 12:22:40 -04003297 // If the opaque nav bar is currently requested to be visible,
Craig Mautner69b08182012-09-05 13:07:13 -07003298 // and not in the process of animating on or off, then
3299 // we can tell the app that it is covered by it.
3300 mSystemBottom = mTmpNavigationFrame.top;
3301 }
Dianne Hackbornf87d1962012-04-04 12:48:24 -07003302 } else {
Craig Mautner69b08182012-09-05 13:07:13 -07003303 // Landscape screen; nav bar goes to the right.
Dianne Hackbornc652de82013-02-15 16:32:56 -08003304 int left = displayWidth - overscanRight
3305 - mNavigationBarWidthForRotation[displayRotation];
3306 mTmpNavigationFrame.set(left, 0, displayWidth - overscanRight, displayHeight);
Craig Mautner69b08182012-09-05 13:07:13 -07003307 mStableRight = mStableFullscreenRight = mTmpNavigationFrame.left;
John Spurlockf95b89a2013-10-10 22:10:42 -04003308 if (transientNavBarShowing) {
John Spurlock27735a42013-08-14 17:57:38 -04003309 mNavigationBarController.setBarShowingLw(true);
John Spurlockad3e6cb2013-04-30 08:47:43 -04003310 } else if (navVisible) {
John Spurlock27735a42013-08-14 17:57:38 -04003311 mNavigationBarController.setBarShowingLw(true);
Craig Mautner69b08182012-09-05 13:07:13 -07003312 mDockRight = mTmpNavigationFrame.left;
Dianne Hackborn313440842013-02-19 19:22:59 -08003313 mRestrictedScreenWidth = mDockRight - mRestrictedScreenLeft;
3314 mRestrictedOverscanScreenWidth = mDockRight - mRestrictedOverscanScreenLeft;
Craig Mautner69b08182012-09-05 13:07:13 -07003315 } else {
3316 // We currently want to hide the navigation UI.
John Spurlock27735a42013-08-14 17:57:38 -04003317 mNavigationBarController.setBarShowingLw(false);
Craig Mautner69b08182012-09-05 13:07:13 -07003318 }
John Spurlockbd957402013-10-03 11:38:39 -04003319 if (navVisible && !navTranslucent && !mNavigationBar.isAnimatingLw()
3320 && !mNavigationBarController.wasRecentlyTranslucent()) {
Craig Mautner69b08182012-09-05 13:07:13 -07003321 // If the nav bar is currently requested to be visible,
3322 // and not in the process of animating on or off, then
3323 // we can tell the app that it is covered by it.
3324 mSystemRight = mTmpNavigationFrame.left;
3325 }
Dianne Hackbornf87d1962012-04-04 12:48:24 -07003326 }
Craig Mautner69b08182012-09-05 13:07:13 -07003327 // Make sure the content and current rectangles are updated to
3328 // account for the restrictions from the navigation bar.
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003329 mContentTop = mVoiceContentTop = mCurTop = mDockTop;
3330 mContentBottom = mVoiceContentBottom = mCurBottom = mDockBottom;
3331 mContentLeft = mVoiceContentLeft = mCurLeft = mDockLeft;
3332 mContentRight = mVoiceContentRight = mCurRight = mDockRight;
Craig Mautner69b08182012-09-05 13:07:13 -07003333 mStatusBarLayer = mNavigationBar.getSurfaceLayer();
3334 // And compute the final frame.
3335 mNavigationBar.computeFrameLw(mTmpNavigationFrame, mTmpNavigationFrame,
Adrian Roosfa104232014-06-20 16:10:14 -07003336 mTmpNavigationFrame, mTmpNavigationFrame, mTmpNavigationFrame, dcf,
3337 mTmpNavigationFrame);
Craig Mautnereda67292013-04-28 13:50:14 -07003338 if (DEBUG_LAYOUT) Slog.i(TAG, "mNavigationBar frame: " + mTmpNavigationFrame);
John Spurlock27735a42013-08-14 17:57:38 -04003339 if (mNavigationBarController.checkHiddenLw()) {
John Spurlockad3e6cb2013-04-30 08:47:43 -04003340 updateSysUiVisibility = true;
3341 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003342 }
Craig Mautnereda67292013-04-28 13:50:14 -07003343 if (DEBUG_LAYOUT) Slog.i(TAG, String.format("mDock rect: (%d,%d - %d,%d)",
Craig Mautner69b08182012-09-05 13:07:13 -07003344 mDockLeft, mDockTop, mDockRight, mDockBottom));
3345
3346 // decide where the status bar goes ahead of time
3347 if (mStatusBar != null) {
3348 // apply any navigation bar insets
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003349 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
3350 pf.top = df.top = of.top = mUnrestrictedScreenTop;
3351 pf.right = df.right = of.right = mUnrestrictedScreenWidth + mUnrestrictedScreenLeft;
3352 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenHeight
3353 + mUnrestrictedScreenTop;
Craig Mautner69b08182012-09-05 13:07:13 -07003354 vf.left = mStableLeft;
3355 vf.top = mStableTop;
3356 vf.right = mStableRight;
3357 vf.bottom = mStableBottom;
3358
3359 mStatusBarLayer = mStatusBar.getSurfaceLayer();
3360
3361 // Let the status bar determine its size.
Adrian Roosfa104232014-06-20 16:10:14 -07003362 mStatusBar.computeFrameLw(pf, df, vf, vf, vf, dcf, vf);
Craig Mautner69b08182012-09-05 13:07:13 -07003363
3364 // For layout, the status bar is always at the top with our fixed height.
3365 mStableTop = mUnrestrictedScreenTop + mStatusBarHeight;
3366
John Spurlocke1f366f2013-08-05 12:22:40 -04003367 boolean statusBarTransient = (sysui & View.STATUS_BAR_TRANSIENT) != 0;
Adrian Roosea562512014-05-05 13:33:03 +02003368 boolean statusBarTranslucent = (sysui
3369 & (View.STATUS_BAR_TRANSLUCENT | View.SYSTEM_UI_TRANSPARENT)) != 0;
Adrian Roos4fb3ee32014-08-22 19:29:09 +02003370 if (!isKeyguardShowing) {
3371 statusBarTranslucent &= areTranslucentBarsAllowed();
3372 }
John Spurlock32beb2c2013-03-11 10:16:47 -04003373
Craig Mautner69b08182012-09-05 13:07:13 -07003374 // If the status bar is hidden, we don't want to cause
3375 // windows behind it to scroll.
John Spurlockeda1f692013-09-16 11:38:44 -04003376 if (mStatusBar.isVisibleLw() && !statusBarTransient) {
Craig Mautner69b08182012-09-05 13:07:13 -07003377 // Status bar may go away, so the screen area it occupies
3378 // is available to apps but just covering them when the
3379 // status bar is visible.
3380 mDockTop = mUnrestrictedScreenTop + mStatusBarHeight;
3381
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003382 mContentTop = mVoiceContentTop = mCurTop = mDockTop;
3383 mContentBottom = mVoiceContentBottom = mCurBottom = mDockBottom;
3384 mContentLeft = mVoiceContentLeft = mCurLeft = mDockLeft;
3385 mContentRight = mVoiceContentRight = mCurRight = mDockRight;
Craig Mautner69b08182012-09-05 13:07:13 -07003386
Craig Mautnereda67292013-04-28 13:50:14 -07003387 if (DEBUG_LAYOUT) Slog.v(TAG, "Status bar: " +
Craig Mautner69b08182012-09-05 13:07:13 -07003388 String.format(
3389 "dock=[%d,%d][%d,%d] content=[%d,%d][%d,%d] cur=[%d,%d][%d,%d]",
3390 mDockLeft, mDockTop, mDockRight, mDockBottom,
3391 mContentLeft, mContentTop, mContentRight, mContentBottom,
3392 mCurLeft, mCurTop, mCurRight, mCurBottom));
3393 }
John Spurlocke1f366f2013-08-05 12:22:40 -04003394 if (mStatusBar.isVisibleLw() && !mStatusBar.isAnimatingLw()
John Spurlockbd957402013-10-03 11:38:39 -04003395 && !statusBarTransient && !statusBarTranslucent
3396 && !mStatusBarController.wasRecentlyTranslucent()) {
John Spurlocke1f366f2013-08-05 12:22:40 -04003397 // If the opaque status bar is currently requested to be visible,
Craig Mautner69b08182012-09-05 13:07:13 -07003398 // and not in the process of animating on or off, then
3399 // we can tell the app that it is covered by it.
3400 mSystemTop = mUnrestrictedScreenTop + mStatusBarHeight;
3401 }
John Spurlock27735a42013-08-14 17:57:38 -04003402 if (mStatusBarController.checkHiddenLw()) {
John Spurlockad3e6cb2013-04-30 08:47:43 -04003403 updateSysUiVisibility = true;
John Spurlock32beb2c2013-03-11 10:16:47 -04003404 }
Dianne Hackborn5c58de32012-04-28 19:52:37 -07003405 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04003406 if (updateSysUiVisibility) {
3407 updateSystemUiVisibilityLw();
3408 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003409 }
3410 }
3411
Dianne Hackborn85afd1b2012-05-13 13:31:06 -07003412 /** {@inheritDoc} */
Craig Mautner967212c2013-04-13 21:10:58 -07003413 @Override
John Spurlock46646232013-09-30 22:32:42 -04003414 public int getSystemDecorLayerLw() {
Dianne Hackborn85afd1b2012-05-13 13:31:06 -07003415 if (mStatusBar != null) return mStatusBar.getSurfaceLayer();
3416 if (mNavigationBar != null) return mNavigationBar.getSurfaceLayer();
3417 return 0;
3418 }
3419
Craig Mautner967212c2013-04-13 21:10:58 -07003420 @Override
3421 public void getContentRectLw(Rect r) {
3422 r.set(mContentLeft, mContentTop, mContentRight, mContentBottom);
3423 }
3424
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003425 void setAttachedWindowFrames(WindowState win, int fl, int adjust, WindowState attached,
3426 boolean insetDecors, Rect pf, Rect df, Rect of, Rect cf, Rect vf) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003427 if (win.getSurfaceLayer() > mDockLayer && attached.getSurfaceLayer() < mDockLayer) {
3428 // Here's a special case: if this attached window is a panel that is
3429 // above the dock window, and the window it is attached to is below
3430 // the dock window, then the frames we computed for the window it is
3431 // attached to can not be used because the dock is effectively part
3432 // of the underlying window and the attached window is floating on top
3433 // of the whole thing. So, we ignore the attached window and explicitly
3434 // compute the frames that would be appropriate without the dock.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003435 df.left = of.left = cf.left = vf.left = mDockLeft;
3436 df.top = of.top = cf.top = vf.top = mDockTop;
3437 df.right = of.right = cf.right = vf.right = mDockRight;
3438 df.bottom = of.bottom = cf.bottom = vf.bottom = mDockBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003439 } else {
3440 // The effective display frame of the attached window depends on
3441 // whether it is taking care of insetting its content. If not,
3442 // we need to use the parent's content frame so that the entire
3443 // window is positioned within that content. Otherwise we can use
Wale Ogunwale393b1c12014-10-18 16:22:01 -07003444 // the overscan frame and let the attached window take care of
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003445 // positioning its content appropriately.
Dianne Hackborndea3ef72010-10-28 14:24:22 -07003446 if (adjust != SOFT_INPUT_ADJUST_RESIZE) {
Wale Ogunwale393b1c12014-10-18 16:22:01 -07003447 // Set the content frame of the attached window to the parent's decor frame
3448 // (same as content frame when IME isn't present) if specifically requested by
3449 // setting {@link WindowManager.LayoutParams#FLAG_LAYOUT_ATTACHED_IN_DECOR} flag.
3450 // Otherwise, use the overscan frame.
3451 cf.set((fl & FLAG_LAYOUT_ATTACHED_IN_DECOR) != 0
3452 ? attached.getContentFrameLw() : attached.getOverscanFrameLw());
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003453 } else {
3454 // If the window is resizing, then we want to base the content
3455 // frame on our attached content frame to resize... however,
3456 // things can be tricky if the attached window is NOT in resize
3457 // mode, in which case its content frame will be larger.
3458 // Ungh. So to deal with that, make sure the content frame
3459 // we end up using is not covering the IM dock.
3460 cf.set(attached.getContentFrameLw());
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003461 if (attached.isVoiceInteraction()) {
3462 if (cf.left < mVoiceContentLeft) cf.left = mVoiceContentLeft;
3463 if (cf.top < mVoiceContentTop) cf.top = mVoiceContentTop;
3464 if (cf.right > mVoiceContentRight) cf.right = mVoiceContentRight;
3465 if (cf.bottom > mVoiceContentBottom) cf.bottom = mVoiceContentBottom;
3466 } else if (attached.getSurfaceLayer() < mDockLayer) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003467 if (cf.left < mContentLeft) cf.left = mContentLeft;
3468 if (cf.top < mContentTop) cf.top = mContentTop;
3469 if (cf.right > mContentRight) cf.right = mContentRight;
3470 if (cf.bottom > mContentBottom) cf.bottom = mContentBottom;
3471 }
3472 }
3473 df.set(insetDecors ? attached.getDisplayFrameLw() : cf);
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003474 of.set(insetDecors ? attached.getOverscanFrameLw() : cf);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003475 vf.set(attached.getVisibleFrameLw());
3476 }
3477 // The LAYOUT_IN_SCREEN flag is used to determine whether the attached
3478 // window should be positioned relative to its parent or the entire
3479 // screen.
3480 pf.set((fl & FLAG_LAYOUT_IN_SCREEN) == 0
3481 ? attached.getFrameLw() : df);
3482 }
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003483
3484 private void applyStableConstraints(int sysui, int fl, Rect r) {
3485 if ((sysui & View.SYSTEM_UI_FLAG_LAYOUT_STABLE) != 0) {
3486 // If app is requesting a stable layout, don't let the
3487 // content insets go below the stable values.
3488 if ((fl & FLAG_FULLSCREEN) != 0) {
3489 if (r.left < mStableFullscreenLeft) r.left = mStableFullscreenLeft;
3490 if (r.top < mStableFullscreenTop) r.top = mStableFullscreenTop;
3491 if (r.right > mStableFullscreenRight) r.right = mStableFullscreenRight;
3492 if (r.bottom > mStableFullscreenBottom) r.bottom = mStableFullscreenBottom;
3493 } else {
3494 if (r.left < mStableLeft) r.left = mStableLeft;
3495 if (r.top < mStableTop) r.top = mStableTop;
3496 if (r.right > mStableRight) r.right = mStableRight;
3497 if (r.bottom > mStableBottom) r.bottom = mStableBottom;
3498 }
3499 }
3500 }
3501
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003502 /** {@inheritDoc} */
Craig Mautner69b08182012-09-05 13:07:13 -07003503 @Override
Craig Mautnerc9457fa2014-06-06 14:27:48 -07003504 public void layoutWindowLw(WindowState win, WindowState attached) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003505 // we've already done the status bar
Craig Mautnerc9457fa2014-06-06 14:27:48 -07003506 final WindowManager.LayoutParams attrs = win.getAttrs();
3507 if ((win == mStatusBar && (attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) == 0) ||
3508 win == mNavigationBar) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003509 return;
3510 }
Craig Mautner69b08182012-09-05 13:07:13 -07003511 final boolean isDefaultDisplay = win.isDefaultDisplay();
3512 final boolean needsToOffsetInputMethodTarget = isDefaultDisplay &&
satok1bc0a492012-04-25 22:47:12 +09003513 (win == mLastInputMethodTargetWindow && mLastInputMethodWindow != null);
3514 if (needsToOffsetInputMethodTarget) {
Craig Mautnereda67292013-04-28 13:50:14 -07003515 if (DEBUG_LAYOUT) Slog.i(TAG, "Offset ime target window by the last ime window state");
satok1bc0a492012-04-25 22:47:12 +09003516 offsetInputMethodWindowLw(mLastInputMethodWindow);
3517 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003518
John Spurlockc6d1c602014-01-17 15:22:06 -05003519 final int fl = PolicyControl.getWindowFlags(win, attrs);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003520 final int sim = attrs.softInputMode;
John Spurlock1db8b682014-02-18 11:18:59 -05003521 final int sysUiFl = PolicyControl.getSystemUiVisibility(win, null);
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003522
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003523 final Rect pf = mTmpParentFrame;
3524 final Rect df = mTmpDisplayFrame;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003525 final Rect of = mTmpOverscanFrame;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003526 final Rect cf = mTmpContentFrame;
3527 final Rect vf = mTmpVisibleFrame;
John Spurlock46646232013-09-30 22:32:42 -04003528 final Rect dcf = mTmpDecorFrame;
Adrian Roosfa104232014-06-20 16:10:14 -07003529 final Rect sf = mTmpStableFrame;
John Spurlock46646232013-09-30 22:32:42 -04003530 dcf.setEmpty();
Craig Mautner69b08182012-09-05 13:07:13 -07003531
3532 final boolean hasNavBar = (isDefaultDisplay && mHasNavigationBar
Daniel Sandler36412a72011-08-04 09:35:13 -04003533 && mNavigationBar != null && mNavigationBar.isVisibleLw());
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003534
Craig Mautnerf683b562012-10-02 11:10:57 -07003535 final int adjust = sim & SOFT_INPUT_MASK_ADJUST;
3536
Adrian Roosfa104232014-06-20 16:10:14 -07003537 if (isDefaultDisplay) {
3538 sf.set(mStableLeft, mStableTop, mStableRight, mStableBottom);
3539 } else {
3540 sf.set(mOverscanLeft, mOverscanTop, mOverscanRight, mOverscanBottom);
3541 }
3542
Craig Mautner69b08182012-09-05 13:07:13 -07003543 if (!isDefaultDisplay) {
3544 if (attached != null) {
3545 // If this window is attached to another, our display
3546 // frame is the same as the one we are attached to.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003547 setAttachedWindowFrames(win, fl, adjust, attached, true, pf, df, of, cf, vf);
Craig Mautner69b08182012-09-05 13:07:13 -07003548 } else {
3549 // Give the window full screen.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003550 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
3551 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
3552 pf.right = df.right = of.right = cf.right
Dianne Hackbornc652de82013-02-15 16:32:56 -08003553 = mOverscanScreenLeft + mOverscanScreenWidth;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003554 pf.bottom = df.bottom = of.bottom = cf.bottom
Dianne Hackbornc652de82013-02-15 16:32:56 -08003555 = mOverscanScreenTop + mOverscanScreenHeight;
Craig Mautner69b08182012-09-05 13:07:13 -07003556 }
3557 } else if (attrs.type == TYPE_INPUT_METHOD) {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003558 pf.left = df.left = of.left = cf.left = vf.left = mDockLeft;
3559 pf.top = df.top = of.top = cf.top = vf.top = mDockTop;
3560 pf.right = df.right = of.right = cf.right = vf.right = mDockRight;
John Spurlockc68d5772013-10-08 11:47:58 -04003561 // IM dock windows layout below the nav bar...
John Spurlock57beb3b2013-10-10 10:27:44 -04003562 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
John Spurlockc68d5772013-10-08 11:47:58 -04003563 // ...with content insets above the nav bar
3564 cf.bottom = vf.bottom = mStableBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003565 // IM dock windows always go to the bottom of the screen.
3566 attrs.gravity = Gravity.BOTTOM;
3567 mDockLayer = win.getSurfaceLayer();
Jorim Jaggie0700182014-08-21 01:12:37 +02003568 } else if (win == mStatusBar && (attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
3569 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
3570 pf.top = df.top = of.top = mUnrestrictedScreenTop;
3571 pf.right = df.right = of.right = mUnrestrictedScreenWidth + mUnrestrictedScreenLeft;
3572 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenHeight + mUnrestrictedScreenTop;
3573 cf.left = vf.left = mStableLeft;
3574 cf.top = vf.top = mStableTop;
3575 cf.right = vf.right = mStableRight;
3576 vf.bottom = mStableBottom;
3577 cf.bottom = mContentBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003578 } else {
John Spurlock46646232013-09-30 22:32:42 -04003579
3580 // Default policy decor for the default display
3581 dcf.left = mSystemLeft;
3582 dcf.top = mSystemTop;
3583 dcf.right = mSystemRight;
3584 dcf.bottom = mSystemBottom;
John Spurlockbd957402013-10-03 11:38:39 -04003585 final boolean inheritTranslucentDecor = (attrs.privateFlags
3586 & WindowManager.LayoutParams.PRIVATE_FLAG_INHERIT_TRANSLUCENT_DECOR) != 0;
John Spurlock65567d42013-10-08 10:08:32 -04003587 final boolean isAppWindow =
3588 attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW &&
3589 attrs.type <= WindowManager.LayoutParams.LAST_APPLICATION_WINDOW;
3590 final boolean topAtRest =
3591 win == mTopFullscreenOpaqueWindowState && !win.isAnimatingLw();
3592 if (isAppWindow && !inheritTranslucentDecor && !topAtRest) {
John Spurlockbd957402013-10-03 11:38:39 -04003593 if ((sysUiFl & View.SYSTEM_UI_FLAG_FULLSCREEN) == 0
3594 && (fl & WindowManager.LayoutParams.FLAG_FULLSCREEN) == 0
Adrian Roosea562512014-05-05 13:33:03 +02003595 && (fl & WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS) == 0
3596 && (fl & WindowManager.LayoutParams.
3597 FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS) == 0) {
John Spurlock46646232013-09-30 22:32:42 -04003598 // Ensure policy decor includes status bar
3599 dcf.top = mStableTop;
3600 }
John Spurlockbd957402013-10-03 11:38:39 -04003601 if ((fl & WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION) == 0
Adrian Roosea562512014-05-05 13:33:03 +02003602 && (sysUiFl & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) == 0
3603 && (fl & WindowManager.LayoutParams.
3604 FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS) == 0) {
John Spurlock46646232013-09-30 22:32:42 -04003605 // Ensure policy decor includes navigation bar
3606 dcf.bottom = mStableBottom;
3607 dcf.right = mStableRight;
3608 }
3609 }
3610
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003611 if ((fl & (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR))
3612 == (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR)) {
RoboErik8a2cfc32014-05-16 11:19:38 -07003613 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle()
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003614 + "): IN_SCREEN, INSET_DECOR");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003615 // This is the case for a normal activity window: we want it
3616 // to cover all of the screen space, and it can take care of
3617 // moving its contents to account for screen decorations that
3618 // intrude into that space.
3619 if (attached != null) {
3620 // If this window is attached to another, our display
3621 // frame is the same as the one we are attached to.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003622 setAttachedWindowFrames(win, fl, adjust, attached, true, pf, df, of, cf, vf);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003623 } else {
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003624 if (attrs.type == TYPE_STATUS_BAR_PANEL
3625 || attrs.type == TYPE_STATUS_BAR_SUB_PANEL) {
Joe Onorato29fc2c92010-11-24 10:26:50 -08003626 // Status bar panels are the only windows who can go on top of
3627 // the status bar. They are protected by the STATUS_BAR_SERVICE
3628 // permission, so they have the same privileges as the status
3629 // bar itself.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003630 //
Daniel Sandler8e8b4152011-07-21 01:16:43 -04003631 // However, they should still dodge the navigation bar if it exists.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003632
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003633 pf.left = df.left = of.left = hasNavBar
3634 ? mDockLeft : mUnrestrictedScreenLeft;
3635 pf.top = df.top = of.top = mUnrestrictedScreenTop;
3636 pf.right = df.right = of.right = hasNavBar
3637 ? mRestrictedScreenLeft+mRestrictedScreenWidth
3638 : mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3639 pf.bottom = df.bottom = of.bottom = hasNavBar
3640 ? mRestrictedScreenTop+mRestrictedScreenHeight
3641 : mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003642
Craig Mautnereda67292013-04-28 13:50:14 -07003643 if (DEBUG_LAYOUT) Slog.v(TAG, String.format(
Daniel Sandler8e8b4152011-07-21 01:16:43 -04003644 "Laying out status bar window: (%d,%d - %d,%d)",
3645 pf.left, pf.top, pf.right, pf.bottom));
John Spurlock46646232013-09-30 22:32:42 -04003646 } else if ((fl & FLAG_LAYOUT_IN_OVERSCAN) != 0
Dianne Hackbornc652de82013-02-15 16:32:56 -08003647 && attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
3648 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
3649 // Asking to layout into the overscan region, so give it that pure
3650 // unrestricted area.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003651 pf.left = df.left = of.left = mOverscanScreenLeft;
3652 pf.top = df.top = of.top = mOverscanScreenTop;
3653 pf.right = df.right = of.right = mOverscanScreenLeft + mOverscanScreenWidth;
3654 pf.bottom = df.bottom = of.bottom = mOverscanScreenTop
3655 + mOverscanScreenHeight;
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07003656 } else if (canHideNavigationBar()
Dianne Hackbornf87d1962012-04-04 12:48:24 -07003657 && (sysUiFl & View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION) != 0
Jorim Jaggi380ecb82014-03-14 17:25:20 +01003658 && attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
3659 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003660 // Asking for layout as if the nav bar is hidden, lets the
Dianne Hackbornc652de82013-02-15 16:32:56 -08003661 // application extend into the unrestricted overscan screen area. We
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003662 // only do this for application windows to ensure no window that
3663 // can be above the nav bar can do this.
Dianne Hackborn313440842013-02-19 19:22:59 -08003664 pf.left = df.left = mOverscanScreenLeft;
3665 pf.top = df.top = mOverscanScreenTop;
3666 pf.right = df.right = mOverscanScreenLeft + mOverscanScreenWidth;
3667 pf.bottom = df.bottom = mOverscanScreenTop + mOverscanScreenHeight;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003668 // We need to tell the app about where the frame inside the overscan
3669 // is, so it can inset its content by that amount -- it didn't ask
3670 // to actually extend itself into the overscan region.
3671 of.left = mUnrestrictedScreenLeft;
3672 of.top = mUnrestrictedScreenTop;
3673 of.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3674 of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08003675 } else {
Dianne Hackborn313440842013-02-19 19:22:59 -08003676 pf.left = df.left = mRestrictedOverscanScreenLeft;
3677 pf.top = df.top = mRestrictedOverscanScreenTop;
3678 pf.right = df.right = mRestrictedOverscanScreenLeft
3679 + mRestrictedOverscanScreenWidth;
3680 pf.bottom = df.bottom = mRestrictedOverscanScreenTop
3681 + mRestrictedOverscanScreenHeight;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003682 // We need to tell the app about where the frame inside the overscan
3683 // is, so it can inset its content by that amount -- it didn't ask
3684 // to actually extend itself into the overscan region.
3685 of.left = mUnrestrictedScreenLeft;
3686 of.top = mUnrestrictedScreenTop;
3687 of.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3688 of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08003689 }
Craig Mautner69b08182012-09-05 13:07:13 -07003690
John Spurlock46646232013-09-30 22:32:42 -04003691 if ((fl & FLAG_FULLSCREEN) == 0) {
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003692 if (win.isVoiceInteraction()) {
3693 cf.left = mVoiceContentLeft;
3694 cf.top = mVoiceContentTop;
3695 cf.right = mVoiceContentRight;
3696 cf.bottom = mVoiceContentBottom;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003697 } else {
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003698 if (adjust != SOFT_INPUT_ADJUST_RESIZE) {
3699 cf.left = mDockLeft;
3700 cf.top = mDockTop;
3701 cf.right = mDockRight;
3702 cf.bottom = mDockBottom;
3703 } else {
3704 cf.left = mContentLeft;
3705 cf.top = mContentTop;
3706 cf.right = mContentRight;
3707 cf.bottom = mContentBottom;
3708 }
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003709 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003710 } else {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003711 // Full screen windows are always given a layout that is as if the
3712 // status bar and other transient decors are gone. This is to avoid
3713 // bad states when moving from a window that is not hding the
3714 // status bar to one that is.
3715 cf.left = mRestrictedScreenLeft;
3716 cf.top = mRestrictedScreenTop;
3717 cf.right = mRestrictedScreenLeft + mRestrictedScreenWidth;
3718 cf.bottom = mRestrictedScreenTop + mRestrictedScreenHeight;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003719 }
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003720 applyStableConstraints(sysUiFl, fl, cf);
Dianne Hackborndea3ef72010-10-28 14:24:22 -07003721 if (adjust != SOFT_INPUT_ADJUST_NOTHING) {
3722 vf.left = mCurLeft;
3723 vf.top = mCurTop;
3724 vf.right = mCurRight;
3725 vf.bottom = mCurBottom;
3726 } else {
3727 vf.set(cf);
3728 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003729 }
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003730 } else if ((fl & FLAG_LAYOUT_IN_SCREEN) != 0 || (sysUiFl
3731 & (View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
3732 | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION)) != 0) {
Craig Mautnereda67292013-04-28 13:50:14 -07003733 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle() +
3734 "): IN_SCREEN");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003735 // A window that has requested to fill the entire screen just
3736 // gets everything, period.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003737 if (attrs.type == TYPE_STATUS_BAR_PANEL
3738 || attrs.type == TYPE_STATUS_BAR_SUB_PANEL) {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003739 pf.left = df.left = of.left = cf.left = hasNavBar
3740 ? mDockLeft : mUnrestrictedScreenLeft;
3741 pf.top = df.top = of.top = cf.top = mUnrestrictedScreenTop;
3742 pf.right = df.right = of.right = cf.right = hasNavBar
Daniel Sandler8e8b4152011-07-21 01:16:43 -04003743 ? mRestrictedScreenLeft+mRestrictedScreenWidth
Dianne Hackbornc652de82013-02-15 16:32:56 -08003744 : mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003745 pf.bottom = df.bottom = of.bottom = cf.bottom = hasNavBar
Daniel Sandler8e8b4152011-07-21 01:16:43 -04003746 ? mRestrictedScreenTop+mRestrictedScreenHeight
Dianne Hackbornc652de82013-02-15 16:32:56 -08003747 : mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Craig Mautnereda67292013-04-28 13:50:14 -07003748 if (DEBUG_LAYOUT) Slog.v(TAG, String.format(
Daniel Sandler36412a72011-08-04 09:35:13 -04003749 "Laying out IN_SCREEN status bar window: (%d,%d - %d,%d)",
3750 pf.left, pf.top, pf.right, pf.bottom));
Jim Millere898ac52012-04-06 17:10:57 -07003751 } else if (attrs.type == TYPE_NAVIGATION_BAR
3752 || attrs.type == TYPE_NAVIGATION_BAR_PANEL) {
Daniel Sandler8e8b4152011-07-21 01:16:43 -04003753 // The navigation bar has Real Ultimate Power.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003754 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
3755 pf.top = df.top = of.top = mUnrestrictedScreenTop;
3756 pf.right = df.right = of.right = mUnrestrictedScreenLeft
3757 + mUnrestrictedScreenWidth;
3758 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenTop
3759 + mUnrestrictedScreenHeight;
Craig Mautnereda67292013-04-28 13:50:14 -07003760 if (DEBUG_LAYOUT) Slog.v(TAG, String.format(
Daniel Sandler8e8b4152011-07-21 01:16:43 -04003761 "Laying out navigation bar window: (%d,%d - %d,%d)",
3762 pf.left, pf.top, pf.right, pf.bottom));
Dianne Hackborn01011c32012-02-21 13:54:21 -08003763 } else if ((attrs.type == TYPE_SECURE_SYSTEM_OVERLAY
3764 || attrs.type == TYPE_BOOT_PROGRESS)
Jeff Brownbfcb60a2011-09-08 18:51:14 -07003765 && ((fl & FLAG_FULLSCREEN) != 0)) {
3766 // Fullscreen secure system overlays get what they ask for.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003767 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
3768 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
3769 pf.right = df.right = of.right = cf.right = mOverscanScreenLeft
3770 + mOverscanScreenWidth;
3771 pf.bottom = df.bottom = of.bottom = cf.bottom = mOverscanScreenTop
3772 + mOverscanScreenHeight;
Craig Mautner165be0c2015-01-27 15:16:58 -08003773 } else if (attrs.type == TYPE_BOOT_PROGRESS) {
Dianne Hackborn01011c32012-02-21 13:54:21 -08003774 // Boot progress screen always covers entire display.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003775 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
3776 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
3777 pf.right = df.right = of.right = cf.right = mOverscanScreenLeft
3778 + mOverscanScreenWidth;
3779 pf.bottom = df.bottom = of.bottom = cf.bottom = mOverscanScreenTop
3780 + mOverscanScreenHeight;
John Spurlockef4adae2013-08-26 17:58:58 -04003781 } else if (attrs.type == TYPE_WALLPAPER) {
Dianne Hackborn067e5f62014-09-07 23:14:30 -07003782 // The wallpaper also has Real Ultimate Power, but we want to tell
3783 // it about the overscan area.
3784 pf.left = df.left = mOverscanScreenLeft;
3785 pf.top = df.top = mOverscanScreenTop;
3786 pf.right = df.right = mOverscanScreenLeft + mOverscanScreenWidth;
3787 pf.bottom = df.bottom = mOverscanScreenTop + mOverscanScreenHeight;
3788 of.left = cf.left = mUnrestrictedScreenLeft;
3789 of.top = cf.top = mUnrestrictedScreenTop;
3790 of.right = cf.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3791 of.bottom = cf.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
John Spurlock46646232013-09-30 22:32:42 -04003792 } else if ((fl & FLAG_LAYOUT_IN_OVERSCAN) != 0
Dianne Hackbornc652de82013-02-15 16:32:56 -08003793 && attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
3794 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
3795 // Asking to layout into the overscan region, so give it that pure
3796 // unrestricted area.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003797 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
3798 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
3799 pf.right = df.right = of.right = cf.right
Dianne Hackbornc652de82013-02-15 16:32:56 -08003800 = mOverscanScreenLeft + mOverscanScreenWidth;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003801 pf.bottom = df.bottom = of.bottom = cf.bottom
Dianne Hackbornc652de82013-02-15 16:32:56 -08003802 = mOverscanScreenTop + mOverscanScreenHeight;
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07003803 } else if (canHideNavigationBar()
Dianne Hackbornf87d1962012-04-04 12:48:24 -07003804 && (sysUiFl & View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION) != 0
Craig Mautnerbeac1062014-06-03 14:38:57 -07003805 && (attrs.type == TYPE_STATUS_BAR
3806 || attrs.type == TYPE_TOAST
John Spurlock34e13d92013-08-10 06:52:28 -04003807 || (attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
3808 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW))) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003809 // Asking for layout as if the nav bar is hidden, lets the
3810 // application extend into the unrestricted screen area. We
John Spurlock34e13d92013-08-10 06:52:28 -04003811 // only do this for application windows (or toasts) to ensure no window that
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003812 // can be above the nav bar can do this.
3813 // XXX This assumes that an app asking for this will also
3814 // ask for layout in only content. We can't currently figure out
3815 // what the screen would be if only laying out to hide the nav bar.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003816 pf.left = df.left = of.left = cf.left = mUnrestrictedScreenLeft;
3817 pf.top = df.top = of.top = cf.top = mUnrestrictedScreenTop;
3818 pf.right = df.right = of.right = cf.right = mUnrestrictedScreenLeft
3819 + mUnrestrictedScreenWidth;
3820 pf.bottom = df.bottom = of.bottom = cf.bottom = mUnrestrictedScreenTop
3821 + mUnrestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08003822 } else {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003823 pf.left = df.left = of.left = cf.left = mRestrictedScreenLeft;
3824 pf.top = df.top = of.top = cf.top = mRestrictedScreenTop;
3825 pf.right = df.right = of.right = cf.right = mRestrictedScreenLeft
3826 + mRestrictedScreenWidth;
3827 pf.bottom = df.bottom = of.bottom = cf.bottom = mRestrictedScreenTop
3828 + mRestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08003829 }
Craig Mautner69b08182012-09-05 13:07:13 -07003830
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003831 applyStableConstraints(sysUiFl, fl, cf);
Craig Mautner69b08182012-09-05 13:07:13 -07003832
Dianne Hackborndea3ef72010-10-28 14:24:22 -07003833 if (adjust != SOFT_INPUT_ADJUST_NOTHING) {
3834 vf.left = mCurLeft;
3835 vf.top = mCurTop;
3836 vf.right = mCurRight;
3837 vf.bottom = mCurBottom;
3838 } else {
3839 vf.set(cf);
3840 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003841 } else if (attached != null) {
Craig Mautnereda67292013-04-28 13:50:14 -07003842 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle() +
3843 "): attached to " + attached);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003844 // A child window should be placed inside of the same visible
3845 // frame that its parent had.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003846 setAttachedWindowFrames(win, fl, adjust, attached, false, pf, df, of, cf, vf);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003847 } else {
Craig Mautnereda67292013-04-28 13:50:14 -07003848 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle() +
3849 "): normal window");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003850 // Otherwise, a normal window must be placed inside the content
3851 // of all screen decorations.
Dianne Hackborna239c842011-06-01 12:28:20 -07003852 if (attrs.type == TYPE_STATUS_BAR_PANEL) {
3853 // Status bar panels are the only windows who can go on top of
3854 // the status bar. They are protected by the STATUS_BAR_SERVICE
3855 // permission, so they have the same privileges as the status
3856 // bar itself.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003857 pf.left = df.left = of.left = cf.left = mRestrictedScreenLeft;
3858 pf.top = df.top = of.top = cf.top = mRestrictedScreenTop;
3859 pf.right = df.right = of.right = cf.right = mRestrictedScreenLeft
3860 + mRestrictedScreenWidth;
3861 pf.bottom = df.bottom = of.bottom = cf.bottom = mRestrictedScreenTop
3862 + mRestrictedScreenHeight;
John Spurlock414c1f02013-12-04 13:47:36 -05003863 } else if (attrs.type == TYPE_TOAST || attrs.type == TYPE_SYSTEM_ALERT
3864 || attrs.type == TYPE_VOLUME_OVERLAY) {
3865 // These dialogs are stable to interim decor changes.
John Spurlockbd957402013-10-03 11:38:39 -04003866 pf.left = df.left = of.left = cf.left = mStableLeft;
3867 pf.top = df.top = of.top = cf.top = mStableTop;
3868 pf.right = df.right = of.right = cf.right = mStableRight;
3869 pf.bottom = df.bottom = of.bottom = cf.bottom = mStableBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003870 } else {
Dianne Hackborna239c842011-06-01 12:28:20 -07003871 pf.left = mContentLeft;
3872 pf.top = mContentTop;
3873 pf.right = mContentRight;
3874 pf.bottom = mContentBottom;
Dianne Hackborn20d94742014-05-29 18:35:45 -07003875 if (win.isVoiceInteraction()) {
3876 df.left = of.left = cf.left = mVoiceContentLeft;
3877 df.top = of.top = cf.top = mVoiceContentTop;
3878 df.right = of.right = cf.right = mVoiceContentRight;
3879 df.bottom = of.bottom = cf.bottom = mVoiceContentBottom;
3880 } else if (adjust != SOFT_INPUT_ADJUST_RESIZE) {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003881 df.left = of.left = cf.left = mDockLeft;
3882 df.top = of.top = cf.top = mDockTop;
3883 df.right = of.right = cf.right = mDockRight;
3884 df.bottom = of.bottom = cf.bottom = mDockBottom;
Dianne Hackborna239c842011-06-01 12:28:20 -07003885 } else {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003886 df.left = of.left = cf.left = mContentLeft;
3887 df.top = of.top = cf.top = mContentTop;
3888 df.right = of.right = cf.right = mContentRight;
3889 df.bottom = of.bottom = cf.bottom = mContentBottom;
Dianne Hackborna239c842011-06-01 12:28:20 -07003890 }
3891 if (adjust != SOFT_INPUT_ADJUST_NOTHING) {
3892 vf.left = mCurLeft;
3893 vf.top = mCurTop;
3894 vf.right = mCurRight;
3895 vf.bottom = mCurBottom;
3896 } else {
3897 vf.set(cf);
3898 }
Dianne Hackborndea3ef72010-10-28 14:24:22 -07003899 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003900 }
3901 }
Craig Mautner69b08182012-09-05 13:07:13 -07003902
Craig Mautnerb816bed2013-07-23 10:26:17 -07003903 // TYPE_SYSTEM_ERROR is above the NavigationBar so it can't be allowed to extend over it.
3904 if ((fl & FLAG_LAYOUT_NO_LIMITS) != 0 && attrs.type != TYPE_SYSTEM_ERROR) {
Dianne Hackborn067e5f62014-09-07 23:14:30 -07003905 df.left = df.top = -10000;
3906 df.right = df.bottom = 10000;
3907 if (attrs.type != TYPE_WALLPAPER) {
3908 of.left = of.top = cf.left = cf.top = vf.left = vf.top = -10000;
3909 of.right = of.bottom = cf.right = cf.bottom = vf.right = vf.bottom = 10000;
3910 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003911 }
3912
Craig Mautnereda67292013-04-28 13:50:14 -07003913 if (DEBUG_LAYOUT) Slog.v(TAG, "Compute frame " + attrs.getTitle()
The Android Open Source Project11267662009-03-18 17:39:47 -07003914 + ": sim=#" + Integer.toHexString(sim)
RoboErik8a2cfc32014-05-16 11:19:38 -07003915 + " attach=" + attached + " type=" + attrs.type
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003916 + String.format(" flags=0x%08x", fl)
The Android Open Source Project11267662009-03-18 17:39:47 -07003917 + " pf=" + pf.toShortString() + " df=" + df.toShortString()
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003918 + " of=" + of.toShortString()
John Spurlock46646232013-09-30 22:32:42 -04003919 + " cf=" + cf.toShortString() + " vf=" + vf.toShortString()
Adrian Roosfa104232014-06-20 16:10:14 -07003920 + " dcf=" + dcf.toShortString()
3921 + " sf=" + sf.toShortString());
Craig Mautner69b08182012-09-05 13:07:13 -07003922
Adrian Roosfa104232014-06-20 16:10:14 -07003923 win.computeFrameLw(pf, df, of, cf, vf, dcf, sf);
Craig Mautner69b08182012-09-05 13:07:13 -07003924
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003925 // Dock windows carve out the bottom of the screen, so normal windows
3926 // can't appear underneath them.
Craig Mautner8bd206b2012-10-03 10:32:02 -07003927 if (attrs.type == TYPE_INPUT_METHOD && win.isVisibleOrBehindKeyguardLw()
3928 && !win.getGivenInsetsPendingLw()) {
satok1bc0a492012-04-25 22:47:12 +09003929 setLastInputMethodWindowLw(null, null);
3930 offsetInputMethodWindowLw(win);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003931 }
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003932 if (attrs.type == TYPE_VOICE_INTERACTION && win.isVisibleOrBehindKeyguardLw()
3933 && !win.getGivenInsetsPendingLw()) {
3934 offsetVoiceInputWindowLw(win);
3935 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003936 }
3937
satok1bc0a492012-04-25 22:47:12 +09003938 private void offsetInputMethodWindowLw(WindowState win) {
3939 int top = win.getContentFrameLw().top;
3940 top += win.getGivenContentInsetsLw().top;
3941 if (mContentBottom > top) {
3942 mContentBottom = top;
3943 }
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003944 if (mVoiceContentBottom > top) {
3945 mVoiceContentBottom = top;
3946 }
satok1bc0a492012-04-25 22:47:12 +09003947 top = win.getVisibleFrameLw().top;
3948 top += win.getGivenVisibleInsetsLw().top;
3949 if (mCurBottom > top) {
3950 mCurBottom = top;
3951 }
Craig Mautnereda67292013-04-28 13:50:14 -07003952 if (DEBUG_LAYOUT) Slog.v(TAG, "Input method: mDockBottom="
satok1bc0a492012-04-25 22:47:12 +09003953 + mDockBottom + " mContentBottom="
3954 + mContentBottom + " mCurBottom=" + mCurBottom);
3955 }
3956
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003957 private void offsetVoiceInputWindowLw(WindowState win) {
3958 final int gravity = win.getAttrs().gravity;
3959 switch (gravity&((Gravity.AXIS_PULL_BEFORE|Gravity.AXIS_PULL_AFTER)
3960 << Gravity.AXIS_X_SHIFT)) {
3961 case Gravity.AXIS_PULL_BEFORE<<Gravity.AXIS_X_SHIFT: {
3962 int right = win.getContentFrameLw().right - win.getGivenContentInsetsLw().right;
3963 if (mVoiceContentLeft < right) {
3964 mVoiceContentLeft = right;
3965 }
3966 } break;
3967 case Gravity.AXIS_PULL_AFTER<<Gravity.AXIS_X_SHIFT: {
3968 int left = win.getContentFrameLw().left - win.getGivenContentInsetsLw().left;
3969 if (mVoiceContentRight < left) {
3970 mVoiceContentRight = left;
3971 }
3972 } break;
3973 }
3974 switch (gravity&((Gravity.AXIS_PULL_BEFORE|Gravity.AXIS_PULL_AFTER)
3975 << Gravity.AXIS_Y_SHIFT)) {
3976 case Gravity.AXIS_PULL_BEFORE<<Gravity.AXIS_Y_SHIFT: {
3977 int bottom = win.getContentFrameLw().bottom - win.getGivenContentInsetsLw().bottom;
3978 if (mVoiceContentTop < bottom) {
3979 mVoiceContentTop = bottom;
3980 }
3981 } break;
3982 case Gravity.AXIS_PULL_AFTER<<Gravity.AXIS_Y_SHIFT: {
3983 int top = win.getContentFrameLw().top - win.getGivenContentInsetsLw().top;
3984 if (mVoiceContentBottom < top) {
3985 mVoiceContentBottom = top;
3986 }
3987 } break;
3988 }
3989 }
3990
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003991 /** {@inheritDoc} */
Craig Mautner61ac6bb2012-02-02 17:29:33 -08003992 @Override
3993 public void finishLayoutLw() {
3994 return;
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08003995 }
3996
3997 /** {@inheritDoc} */
Craig Mautnerad09bcc2012-10-08 13:33:11 -07003998 @Override
Craig Mautner39834192012-09-02 07:47:24 -07003999 public void beginPostLayoutPolicyLw(int displayWidth, int displayHeight) {
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004000 mTopFullscreenOpaqueWindowState = null;
Craig Mautner2bc789b2014-03-19 19:48:38 -07004001 mAppsToBeHidden.clear();
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004002 mAppsThatDismissKeyguard.clear();
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004003 mForceStatusBar = false;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07004004 mForceStatusBarFromKeyguard = false;
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08004005 mForcingShowNavBar = false;
4006 mForcingShowNavBarLayer = -1;
RoboErik8a2cfc32014-05-16 11:19:38 -07004007
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004008 mHideLockScreen = false;
4009 mAllowLockscreenWhenOn = false;
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004010 mDismissKeyguard = DISMISS_KEYGUARD_NONE;
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004011 mShowingLockscreen = false;
4012 mShowingDream = false;
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004013 mWinShowWhenLocked = null;
Jim Millerab954542014-10-10 18:21:49 -07004014 mKeyguardSecure = isKeyguardSecure();
4015 mKeyguardSecureIncludingHidden = mKeyguardSecure
4016 && (mKeyguardDelegate != null && mKeyguardDelegate.isShowing());
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004017 }
4018
4019 /** {@inheritDoc} */
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004020 @Override
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004021 public void applyPostLayoutPolicyLw(WindowState win, WindowManager.LayoutParams attrs) {
Dianne Hackbornbc1aa7b2011-09-20 11:20:31 -07004022 if (DEBUG_LAYOUT) Slog.i(TAG, "Win " + win + ": isVisibleOrBehindKeyguardLw="
4023 + win.isVisibleOrBehindKeyguardLw());
John Spurlockc6d1c602014-01-17 15:22:06 -05004024 final int fl = PolicyControl.getWindowFlags(win, attrs);
John Spurlock414c1f02013-12-04 13:47:36 -05004025 if (mTopFullscreenOpaqueWindowState == null
4026 && win.isVisibleLw() && attrs.type == TYPE_INPUT_METHOD) {
4027 mForcingShowNavBar = true;
4028 mForcingShowNavBarLayer = win.getSurfaceLayer();
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08004029 }
Jorim Jaggiafd4a552014-04-08 15:13:05 +02004030 if (attrs.type == TYPE_STATUS_BAR && (attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
Jorim Jaggiafd4a552014-04-08 15:13:05 +02004031 mForceStatusBarFromKeyguard = true;
4032 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004033 if (mTopFullscreenOpaqueWindowState == null &&
Dianne Hackborn01b02a72012-01-12 14:05:03 -08004034 win.isVisibleOrBehindKeyguardLw() && !win.isGoneForLayoutLw()) {
John Spurlockc6d1c602014-01-17 15:22:06 -05004035 if ((fl & FLAG_FORCE_NOT_FULLSCREEN) != 0) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004036 if ((attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07004037 mForceStatusBarFromKeyguard = true;
4038 } else {
4039 mForceStatusBar = true;
4040 }
4041 }
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004042 if ((attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004043 mShowingLockscreen = true;
Dianne Hackbornbc1aa7b2011-09-20 11:20:31 -07004044 }
Craig Mautnerab55e522014-03-03 13:26:03 -08004045 boolean appWindow = attrs.type >= FIRST_APPLICATION_WINDOW
Craig Mautner7d7808f2014-09-11 18:02:38 -07004046 && attrs.type < FIRST_SYSTEM_WINDOW;
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004047 if (attrs.type == TYPE_DREAM) {
Jeff Brownc8018eb2012-10-29 21:33:27 -07004048 // If the lockscreen was showing when the dream started then wait
4049 // for the dream to draw before hiding the lockscreen.
4050 if (!mDreamingLockscreen
4051 || (win.isVisibleLw() && win.hasDrawnLw())) {
4052 mShowingDream = true;
Craig Mautnerab55e522014-03-03 13:26:03 -08004053 appWindow = true;
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004054 }
4055 }
Craig Mautnerab55e522014-03-03 13:26:03 -08004056
Craig Mautner00156ec2014-03-06 22:29:02 -08004057 final boolean showWhenLocked = (fl & FLAG_SHOW_WHEN_LOCKED) != 0;
Craig Mautner74ee9382014-04-01 15:20:16 -07004058 final boolean dismissKeyguard = (fl & FLAG_DISMISS_KEYGUARD) != 0;
Craig Mautnerab55e522014-03-03 13:26:03 -08004059 if (appWindow) {
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004060 final IApplicationToken appToken = win.getAppToken();
4061 if (showWhenLocked) {
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004062 // Remove any previous windows with the same appToken.
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004063 mAppsToBeHidden.remove(appToken);
4064 mAppsThatDismissKeyguard.remove(appToken);
Craig Mautnerca0a1242014-12-02 12:25:14 -08004065 if (mAppsToBeHidden.isEmpty()) {
Craig Mautner192d6042014-12-02 23:24:48 -08004066 if (dismissKeyguard && !mKeyguardSecure) {
4067 mAppsThatDismissKeyguard.add(appToken);
4068 } else {
Craig Mautnerca0a1242014-12-02 12:25:14 -08004069 mWinShowWhenLocked = win;
4070 mHideLockScreen = true;
4071 mForceStatusBarFromKeyguard = false;
Craig Mautnerca0a1242014-12-02 12:25:14 -08004072 }
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004073 }
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004074 } else if (dismissKeyguard) {
Jim Millerab954542014-10-10 18:21:49 -07004075 if (mKeyguardSecure) {
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004076 mAppsToBeHidden.add(appToken);
4077 } else {
4078 mAppsToBeHidden.remove(appToken);
4079 }
4080 mAppsThatDismissKeyguard.add(appToken);
Craig Mautner2bc789b2014-03-19 19:48:38 -07004081 } else {
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004082 mAppsToBeHidden.add(appToken);
Craig Mautner2bc789b2014-03-19 19:48:38 -07004083 }
Craig Mautnerab55e522014-03-03 13:26:03 -08004084 if (attrs.x == 0 && attrs.y == 0
4085 && attrs.width == WindowManager.LayoutParams.MATCH_PARENT
4086 && attrs.height == WindowManager.LayoutParams.MATCH_PARENT) {
4087 if (DEBUG_LAYOUT) Slog.v(TAG, "Fullscreen window: " + win);
4088 mTopFullscreenOpaqueWindowState = win;
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004089 if (!mAppsThatDismissKeyguard.isEmpty() &&
4090 mDismissKeyguard == DISMISS_KEYGUARD_NONE) {
4091 if (DEBUG_LAYOUT) Slog.v(TAG,
4092 "Setting mDismissKeyguard true by win " + win);
4093 mDismissKeyguard = mWinDismissingKeyguard == win ?
4094 DISMISS_KEYGUARD_CONTINUE : DISMISS_KEYGUARD_START;
4095 mWinDismissingKeyguard = win;
Jim Millerab954542014-10-10 18:21:49 -07004096 mForceStatusBarFromKeyguard = mShowingLockscreen && mKeyguardSecure;
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004097 } else if (mAppsToBeHidden.isEmpty() && showWhenLocked) {
4098 if (DEBUG_LAYOUT) Slog.v(TAG,
4099 "Setting mHideLockScreen to true by win " + win);
4100 mHideLockScreen = true;
4101 mForceStatusBarFromKeyguard = false;
Craig Mautnerab55e522014-03-03 13:26:03 -08004102 }
Craig Mautner00156ec2014-03-06 22:29:02 -08004103 if ((fl & FLAG_ALLOW_LOCK_WHILE_SCREEN_ON) != 0) {
Craig Mautnerab55e522014-03-03 13:26:03 -08004104 mAllowLockscreenWhenOn = true;
4105 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004106 }
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004107
4108 if (mWinShowWhenLocked != null &&
4109 mWinShowWhenLocked.getAppToken() != win.getAppToken()) {
4110 win.hideLw(false);
4111 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004112 }
4113 }
4114 }
4115
4116 /** {@inheritDoc} */
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004117 @Override
Craig Mautner39834192012-09-02 07:47:24 -07004118 public int finishPostLayoutPolicyLw() {
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004119 if (mWinShowWhenLocked != null &&
4120 mWinShowWhenLocked != mTopFullscreenOpaqueWindowState) {
4121 // A dialog is dismissing the keyguard. Put the wallpaper behind it and hide the
4122 // fullscreen window.
4123 // TODO: Make sure FLAG_SHOW_WALLPAPER is restored when dialog is dismissed. Or not.
4124 mWinShowWhenLocked.getAttrs().flags |= FLAG_SHOW_WALLPAPER;
4125 mTopFullscreenOpaqueWindowState.hideLw(false);
4126 mTopFullscreenOpaqueWindowState = mWinShowWhenLocked;
4127 }
4128
Dianne Hackborn39c2d712009-09-22 11:41:31 -07004129 int changes = 0;
Joe Onorato93056472010-09-10 10:30:46 -04004130 boolean topIsFullscreen = false;
Daniel Sandlere02d8082010-10-08 15:13:22 -04004131
4132 final WindowManager.LayoutParams lp = (mTopFullscreenOpaqueWindowState != null)
4133 ? mTopFullscreenOpaqueWindowState.getAttrs()
4134 : null;
4135
Jeff Brownc8018eb2012-10-29 21:33:27 -07004136 // If we are not currently showing a dream then remember the current
4137 // lockscreen state. We will use this to determine whether the dream
4138 // started while the lockscreen was showing and remember this state
4139 // while the dream is showing.
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004140 if (!mShowingDream) {
4141 mDreamingLockscreen = mShowingLockscreen;
4142 }
4143
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004144 if (mStatusBar != null) {
Craig Mautnereda67292013-04-28 13:50:14 -07004145 if (DEBUG_LAYOUT) Slog.i(TAG, "force=" + mForceStatusBar
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07004146 + " forcefkg=" + mForceStatusBarFromKeyguard
Dianne Hackbornd70bc2f2009-10-06 23:25:51 -07004147 + " top=" + mTopFullscreenOpaqueWindowState);
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07004148 if (mForceStatusBar || mForceStatusBarFromKeyguard) {
Craig Mautnereda67292013-04-28 13:50:14 -07004149 if (DEBUG_LAYOUT) Slog.v(TAG, "Showing status bar: forced");
John Spurlock27735a42013-08-14 17:57:38 -04004150 if (mStatusBarController.setBarShowingLw(true)) {
4151 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4152 }
Craig Mautner81defc72013-10-29 11:10:42 -07004153 // Maintain fullscreen layout until incoming animation is complete.
4154 topIsFullscreen = mTopIsFullscreen && mStatusBar.isAnimatingLw();
John Spurlockf92b6162013-11-11 15:01:16 -05004155 // Transient status bar on the lockscreen is not allowed
4156 if (mForceStatusBarFromKeyguard && mStatusBarController.isTransientShowing()) {
4157 mStatusBarController.updateVisibilityLw(false /*transientAllowed*/,
4158 mLastSystemUiFlags, mLastSystemUiFlags);
4159 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004160 } else if (mTopFullscreenOpaqueWindowState != null) {
John Spurlockc6d1c602014-01-17 15:22:06 -05004161 final int fl = PolicyControl.getWindowFlags(null, lp);
Joe Onorato93056472010-09-10 10:30:46 -04004162 if (localLOGV) {
Craig Mautnereda67292013-04-28 13:50:14 -07004163 Slog.d(TAG, "frame: " + mTopFullscreenOpaqueWindowState.getFrameLw()
Joe Onorato93056472010-09-10 10:30:46 -04004164 + " shown frame: " + mTopFullscreenOpaqueWindowState.getShownFrameLw());
Craig Mautnereda67292013-04-28 13:50:14 -07004165 Slog.d(TAG, "attr: " + mTopFullscreenOpaqueWindowState.getAttrs()
John Spurlockc6d1c602014-01-17 15:22:06 -05004166 + " lp.flags=0x" + Integer.toHexString(fl));
Joe Onorato93056472010-09-10 10:30:46 -04004167 }
John Spurlockc6d1c602014-01-17 15:22:06 -05004168 topIsFullscreen = (fl & WindowManager.LayoutParams.FLAG_FULLSCREEN) != 0
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004169 || (mLastSystemUiFlags & View.SYSTEM_UI_FLAG_FULLSCREEN) != 0;
Joe Onorato93056472010-09-10 10:30:46 -04004170 // The subtle difference between the window for mTopFullscreenOpaqueWindowState
Mark Dolinerd0646dc2014-08-27 16:04:02 -07004171 // and mTopIsFullscreen is that mTopIsFullscreen is set only if the window
Joe Onorato93056472010-09-10 10:30:46 -04004172 // has the FLAG_FULLSCREEN set. Not sure if there is another way that to be the
4173 // case though.
John Spurlock27735a42013-08-14 17:57:38 -04004174 if (mStatusBarController.isTransientShowing()) {
4175 if (mStatusBarController.setBarShowingLw(true)) {
John Spurlock32beb2c2013-03-11 10:16:47 -04004176 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4177 }
4178 } else if (topIsFullscreen) {
Craig Mautnereda67292013-04-28 13:50:14 -07004179 if (DEBUG_LAYOUT) Slog.v(TAG, "** HIDING status bar");
John Spurlock27735a42013-08-14 17:57:38 -04004180 if (mStatusBarController.setBarShowingLw(false)) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07004181 changes |= FINISH_LAYOUT_REDO_LAYOUT;
Craig Mautnereda67292013-04-28 13:50:14 -07004182 } else {
Craig Mautnerc5a6e442013-06-05 17:22:35 -07004183 if (DEBUG_LAYOUT) Slog.v(TAG, "Status bar already hiding");
Daniel Sandler40427442010-07-16 11:44:52 -04004184 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004185 } else {
Craig Mautnereda67292013-04-28 13:50:14 -07004186 if (DEBUG_LAYOUT) Slog.v(TAG, "** SHOWING status bar: top is not fullscreen");
John Spurlock27735a42013-08-14 17:57:38 -04004187 if (mStatusBarController.setBarShowingLw(true)) {
4188 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4189 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004190 }
4191 }
4192 }
Daniel Sandlere02d8082010-10-08 15:13:22 -04004193
Craig Mautner81defc72013-10-29 11:10:42 -07004194 if (mTopIsFullscreen != topIsFullscreen) {
4195 if (!topIsFullscreen) {
4196 // Force another layout when status bar becomes fully shown.
4197 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4198 }
4199 mTopIsFullscreen = topIsFullscreen;
4200 }
Daniel Sandlere02d8082010-10-08 15:13:22 -04004201
Craig Mautner39834192012-09-02 07:47:24 -07004202 // Hide the key guard if a visible window explicitly specifies that it wants to be
4203 // displayed when the screen is locked.
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004204 if (mKeyguardDelegate != null && mStatusBar != null) {
4205 if (localLOGV) Slog.v(TAG, "finishPostLayoutPolicyLw: mHideKeyguard="
4206 + mHideLockScreen);
Jim Millerab954542014-10-10 18:21:49 -07004207 if (mDismissKeyguard != DISMISS_KEYGUARD_NONE && !mKeyguardSecure) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004208 mKeyguardHidden = true;
Jim Millerab954542014-10-10 18:21:49 -07004209 if (setKeyguardOccludedLw(true)) {
Dianne Hackborn39c2d712009-09-22 11:41:31 -07004210 changes |= FINISH_LAYOUT_REDO_LAYOUT
4211 | FINISH_LAYOUT_REDO_CONFIG
4212 | FINISH_LAYOUT_REDO_WALLPAPER;
4213 }
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004214 if (mKeyguardDelegate.isShowing()) {
4215 mHandler.post(new Runnable() {
4216 @Override
4217 public void run() {
4218 mKeyguardDelegate.keyguardDone(false, false);
4219 }
4220 });
4221 }
4222 } else if (mHideLockScreen) {
4223 mKeyguardHidden = true;
Jim Millerab954542014-10-10 18:21:49 -07004224 if (setKeyguardOccludedLw(true)) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004225 changes |= FINISH_LAYOUT_REDO_LAYOUT
4226 | FINISH_LAYOUT_REDO_CONFIG
4227 | FINISH_LAYOUT_REDO_WALLPAPER;
4228 }
4229 } else if (mDismissKeyguard != DISMISS_KEYGUARD_NONE) {
4230 // This is the case of keyguard isSecure() and not mHideLockScreen.
4231 if (mDismissKeyguard == DISMISS_KEYGUARD_START) {
4232 // Only launch the next keyguard unlock window once per window.
4233 mKeyguardHidden = false;
Jim Millerab954542014-10-10 18:21:49 -07004234 if (setKeyguardOccludedLw(false)) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004235 changes |= FINISH_LAYOUT_REDO_LAYOUT
4236 | FINISH_LAYOUT_REDO_CONFIG
4237 | FINISH_LAYOUT_REDO_WALLPAPER;
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004238 }
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004239 mHandler.post(new Runnable() {
4240 @Override
4241 public void run() {
4242 mKeyguardDelegate.dismiss();
4243 }
4244 });
4245 }
4246 } else {
4247 mWinDismissingKeyguard = null;
4248 mKeyguardHidden = false;
Jim Millerab954542014-10-10 18:21:49 -07004249 if (setKeyguardOccludedLw(false)) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004250 changes |= FINISH_LAYOUT_REDO_LAYOUT
4251 | FINISH_LAYOUT_REDO_CONFIG
4252 | FINISH_LAYOUT_REDO_WALLPAPER;
4253 }
Suchi Amalapurapu9cdc9032009-05-14 18:01:07 -07004254 }
4255 }
Joe Onorato664644d2011-01-23 17:53:23 -08004256
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004257 if ((updateSystemUiVisibilityLw()&SYSTEM_UI_CHANGING_LAYOUT) != 0) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07004258 // If the navigation bar has been hidden or shown, we need to do another
4259 // layout pass to update that window.
4260 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4261 }
Joe Onorato664644d2011-01-23 17:53:23 -08004262
Mike Lockwood28569302010-01-28 11:54:40 -05004263 // update since mAllowLockscreenWhenOn might have changed
4264 updateLockScreenTimeout();
Dianne Hackborn39c2d712009-09-22 11:41:31 -07004265 return changes;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004266 }
4267
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004268 /**
Jim Millerab954542014-10-10 18:21:49 -07004269 * Updates the occluded state of the Keyguard.
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004270 *
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004271 * @return Whether the flags have changed and we have to redo the layout.
4272 */
Jim Millerab954542014-10-10 18:21:49 -07004273 private boolean setKeyguardOccludedLw(boolean isOccluded) {
4274 boolean wasOccluded = mKeyguardOccluded;
4275 boolean showing = mKeyguardDelegate.isShowing();
4276 if (wasOccluded && !isOccluded && showing) {
4277 mKeyguardOccluded = false;
4278 mKeyguardDelegate.setOccluded(false);
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004279 mStatusBar.getAttrs().privateFlags |= PRIVATE_FLAG_KEYGUARD;
4280 mStatusBar.getAttrs().flags |= FLAG_SHOW_WALLPAPER;
4281 return true;
Jim Millerab954542014-10-10 18:21:49 -07004282 } else if (!wasOccluded && isOccluded && showing) {
4283 mKeyguardOccluded = true;
4284 mKeyguardDelegate.setOccluded(true);
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004285 mStatusBar.getAttrs().privateFlags &= ~PRIVATE_FLAG_KEYGUARD;
4286 mStatusBar.getAttrs().flags &= ~FLAG_SHOW_WALLPAPER;
4287 return true;
4288 } else {
4289 return false;
4290 }
4291 }
4292
4293 private boolean isStatusBarKeyguard() {
4294 return mStatusBar != null
4295 && (mStatusBar.getAttrs().privateFlags & PRIVATE_FLAG_KEYGUARD) != 0;
4296 }
4297
Jose Lima9546b202014-07-02 17:21:51 -07004298 @Override
Dianne Hackborn08743722009-12-21 12:16:51 -08004299 public boolean allowAppAnimationsLw() {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004300 if (isStatusBarKeyguard() || mShowingDream) {
Craig Mautner28816302013-10-10 20:31:00 -07004301 // If keyguard or dreams is currently visible, no reason to animate behind it.
Dianne Hackborn08743722009-12-21 12:16:51 -08004302 return false;
4303 }
Dianne Hackborn08743722009-12-21 12:16:51 -08004304 return true;
4305 }
4306
Jose Lima9546b202014-07-02 17:21:51 -07004307 @Override
Dianne Hackborndf89e652011-10-06 22:35:11 -07004308 public int focusChangedLw(WindowState lastFocus, WindowState newFocus) {
Joe Onorato664644d2011-01-23 17:53:23 -08004309 mFocusedWindow = newFocus;
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004310 if ((updateSystemUiVisibilityLw()&SYSTEM_UI_CHANGING_LAYOUT) != 0) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07004311 // If the navigation bar has been hidden or shown, we need to do another
4312 // layout pass to update that window.
4313 return FINISH_LAYOUT_REDO_LAYOUT;
4314 }
4315 return 0;
Joe Onorato664644d2011-01-23 17:53:23 -08004316 }
4317
Dianne Hackborn0ecadf72009-03-31 18:00:37 -07004318 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07004319 @Override
Jeff Brown46b9ac02010-04-22 18:58:52 -07004320 public void notifyLidSwitchChanged(long whenNanos, boolean lidOpen) {
4321 // lid changed state
Jeff Brownc458ce92012-04-30 14:58:40 -07004322 final int newLidState = lidOpen ? LID_OPEN : LID_CLOSED;
4323 if (newLidState == mLidState) {
4324 return;
4325 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07004326
Jeff Brownc458ce92012-04-30 14:58:40 -07004327 mLidState = newLidState;
4328 applyLidSwitchState();
Jeff Brown01a98dd2011-09-20 15:08:29 -07004329 updateRotation(true);
Jeff Brownc458ce92012-04-30 14:58:40 -07004330
4331 if (lidOpen) {
Bryce Lee584a4452014-10-21 15:55:55 -07004332 wakeUp(SystemClock.uptimeMillis(), mAllowTheaterModeWakeFromLidSwitch);
Jeff Brownc458ce92012-04-30 14:58:40 -07004333 } else if (!mLidControlsSleep) {
Jeff Brown96307042012-07-27 15:51:34 -07004334 mPowerManager.userActivity(SystemClock.uptimeMillis(), false);
Jeff Brown46b9ac02010-04-22 18:58:52 -07004335 }
4336 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004337
Michael Wright3818c922014-09-02 13:59:07 -07004338 @Override
4339 public void notifyCameraLensCoverSwitchChanged(long whenNanos, boolean lensCovered) {
4340 int lensCoverState = lensCovered ? CAMERA_LENS_COVERED : CAMERA_LENS_UNCOVERED;
4341 if (mCameraLensCoverState == lensCoverState) {
4342 return;
4343 }
4344 if (mCameraLensCoverState == CAMERA_LENS_COVERED &&
4345 lensCoverState == CAMERA_LENS_UNCOVERED) {
4346 Intent intent;
4347 final boolean keyguardActive = mKeyguardDelegate == null ? false :
4348 mKeyguardDelegate.isShowing();
4349 if (keyguardActive) {
4350 intent = new Intent(MediaStore.INTENT_ACTION_STILL_IMAGE_CAMERA_SECURE);
4351 } else {
4352 intent = new Intent(MediaStore.INTENT_ACTION_STILL_IMAGE_CAMERA);
4353 }
Bryce Lee584a4452014-10-21 15:55:55 -07004354 wakeUp(whenNanos / 1000000, mAllowTheaterModeWakeFromCameraLens);
Michael Wright3818c922014-09-02 13:59:07 -07004355 mContext.startActivityAsUser(intent, UserHandle.CURRENT_OR_SELF);
4356 }
4357 mCameraLensCoverState = lensCoverState;
4358 }
4359
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004360 void setHdmiPlugged(boolean plugged) {
4361 if (mHdmiPlugged != plugged) {
4362 mHdmiPlugged = plugged;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07004363 updateRotation(true, true);
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004364 Intent intent = new Intent(ACTION_HDMI_PLUGGED);
Joe Onoratodc100302011-01-11 17:07:41 -08004365 intent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT);
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004366 intent.putExtra(EXTRA_HDMI_PLUGGED_STATE, plugged);
Dianne Hackborn5ac72a22012-08-29 18:32:08 -07004367 mContext.sendStickyBroadcastAsUser(intent, UserHandle.ALL);
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004368 }
4369 }
4370
Joe Onoratoea495d42011-04-06 11:41:11 -07004371 void initializeHdmiState() {
Joe Onorato7ba631f2011-05-04 15:28:00 -07004372 boolean plugged = false;
Joe Onoratoea495d42011-04-06 11:41:11 -07004373 // watch for HDMI plug messages if the hdmi switch exists
4374 if (new File("/sys/devices/virtual/switch/hdmi/state").exists()) {
4375 mHDMIObserver.startObserving("DEVPATH=/devices/virtual/switch/hdmi");
4376
Joe Onoratoea495d42011-04-06 11:41:11 -07004377 final String filename = "/sys/class/switch/hdmi/state";
4378 FileReader reader = null;
4379 try {
4380 reader = new FileReader(filename);
4381 char[] buf = new char[15];
4382 int n = reader.read(buf);
4383 if (n > 1) {
4384 plugged = 0 != Integer.parseInt(new String(buf, 0, n-1));
4385 }
4386 } catch (IOException ex) {
4387 Slog.w(TAG, "Couldn't read hdmi state from " + filename + ": " + ex);
4388 } catch (NumberFormatException ex) {
4389 Slog.w(TAG, "Couldn't read hdmi state from " + filename + ": " + ex);
4390 } finally {
4391 if (reader != null) {
4392 try {
4393 reader.close();
4394 } catch (IOException ex) {
4395 }
Joe Onoratodc100302011-01-11 17:07:41 -08004396 }
4397 }
4398 }
Joe Onorato7ba631f2011-05-04 15:28:00 -07004399 // This dance forces the code in setHdmiPlugged to run.
4400 // Always do this so the sticky intent is stuck (to false) if there is no hdmi.
4401 mHdmiPlugged = !plugged;
4402 setHdmiPlugged(!mHdmiPlugged);
Joe Onoratodc100302011-01-11 17:07:41 -08004403 }
4404
Dianne Hackbornc0e3f242011-08-19 14:19:10 -07004405 final Object mScreenshotLock = new Object();
Dianne Hackbornfc8fa632011-08-17 16:20:47 -07004406 ServiceConnection mScreenshotConnection = null;
Dianne Hackbornfc8fa632011-08-17 16:20:47 -07004407
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004408 final Runnable mScreenshotTimeout = new Runnable() {
4409 @Override public void run() {
4410 synchronized (mScreenshotLock) {
4411 if (mScreenshotConnection != null) {
4412 mContext.unbindService(mScreenshotConnection);
4413 mScreenshotConnection = null;
Dianne Hackbornfc8fa632011-08-17 16:20:47 -07004414 }
Winson Chung9112ec32011-06-27 13:15:32 -07004415 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004416 }
4417 };
4418
4419 // Assume this is called from the Handler thread.
4420 private void takeScreenshot() {
4421 synchronized (mScreenshotLock) {
4422 if (mScreenshotConnection != null) {
4423 return;
4424 }
4425 ComponentName cn = new ComponentName("com.android.systemui",
4426 "com.android.systemui.screenshot.TakeScreenshotService");
4427 Intent intent = new Intent();
4428 intent.setComponent(cn);
4429 ServiceConnection conn = new ServiceConnection() {
4430 @Override
4431 public void onServiceConnected(ComponentName name, IBinder service) {
4432 synchronized (mScreenshotLock) {
4433 if (mScreenshotConnection != this) {
4434 return;
4435 }
4436 Messenger messenger = new Messenger(service);
4437 Message msg = Message.obtain(null, 1);
4438 final ServiceConnection myConn = this;
4439 Handler h = new Handler(mHandler.getLooper()) {
4440 @Override
4441 public void handleMessage(Message msg) {
4442 synchronized (mScreenshotLock) {
4443 if (mScreenshotConnection == myConn) {
4444 mContext.unbindService(mScreenshotConnection);
4445 mScreenshotConnection = null;
4446 mHandler.removeCallbacks(mScreenshotTimeout);
4447 }
4448 }
4449 }
4450 };
4451 msg.replyTo = new Messenger(h);
Winson Chunga63bb842011-10-17 10:26:28 -07004452 msg.arg1 = msg.arg2 = 0;
4453 if (mStatusBar != null && mStatusBar.isVisibleLw())
4454 msg.arg1 = 1;
4455 if (mNavigationBar != null && mNavigationBar.isVisibleLw())
4456 msg.arg2 = 1;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004457 try {
4458 messenger.send(msg);
4459 } catch (RemoteException e) {
4460 }
4461 }
4462 }
4463 @Override
4464 public void onServiceDisconnected(ComponentName name) {}
4465 };
Amith Yamasani27b89e62013-01-16 12:30:11 -08004466 if (mContext.bindServiceAsUser(
4467 intent, conn, Context.BIND_AUTO_CREATE, UserHandle.CURRENT)) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004468 mScreenshotConnection = conn;
4469 mHandler.postDelayed(mScreenshotTimeout, 10000);
4470 }
4471 }
Winson Chung9112ec32011-06-27 13:15:32 -07004472 }
4473
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004474 /** {@inheritDoc} */
Jeff Brown00fa7bd2010-07-02 15:37:36 -07004475 @Override
Jeff Brown037c33e2014-04-09 00:31:55 -07004476 public int interceptKeyBeforeQueueing(KeyEvent event, int policyFlags) {
Jeff Brown96307042012-07-27 15:51:34 -07004477 if (!mSystemBooted) {
4478 // If we have not yet booted, don't let key events do anything.
4479 return 0;
4480 }
4481
Jeff Brown037c33e2014-04-09 00:31:55 -07004482 final boolean interactive = (policyFlags & FLAG_INTERACTIVE) != 0;
Jeff Brown1f245102010-11-18 20:53:46 -08004483 final boolean down = event.getAction() == KeyEvent.ACTION_DOWN;
4484 final boolean canceled = event.isCanceled();
4485 final int keyCode = event.getKeyCode();
Jeff Browne20c9e02010-10-11 14:20:19 -07004486
Jeff Brown3122e442010-10-11 23:32:49 -07004487 final boolean isInjected = (policyFlags & WindowManagerPolicy.FLAG_INJECTED) != 0;
Jeff Brown3122e442010-10-11 23:32:49 -07004488
Mike Lockwoodc72b15f2009-11-28 20:58:22 -05004489 // If screen is off then we treat the case where the keyguard is open but hidden
4490 // the same as if it were open and in front.
4491 // This will prevent any keys other than the power button from waking the screen
4492 // when the keyguard is hidden by another activity.
Jim Miller5ecd8112013-01-09 18:50:26 -08004493 final boolean keyguardActive = (mKeyguardDelegate == null ? false :
Jeff Brown037c33e2014-04-09 00:31:55 -07004494 (interactive ?
Jim Millerab954542014-10-10 18:21:49 -07004495 isKeyguardShowingAndNotOccluded() :
Jim Miller5ecd8112013-01-09 18:50:26 -08004496 mKeyguardDelegate.isShowing()));
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004497
Jeff Brown40013652012-05-16 21:22:36 -07004498 if (DEBUG_INPUT) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07004499 Log.d(TAG, "interceptKeyTq keycode=" + keyCode
Jeff Brown037c33e2014-04-09 00:31:55 -07004500 + " interactive=" + interactive + " keyguardActive=" + keyguardActive
Jeff Brown26875502014-01-30 21:47:47 -08004501 + " policyFlags=" + Integer.toHexString(policyFlags));
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004502 }
4503
Jeff Brown037c33e2014-04-09 00:31:55 -07004504 // Basic policy based on interactive state.
Jeff Brown4d396052010-10-29 21:50:21 -07004505 int result;
Michael Wright337d9d22014-04-22 15:03:48 -07004506 boolean isWakeKey = (policyFlags & WindowManagerPolicy.FLAG_WAKE) != 0
4507 || event.isWakeKey();
Michael Wrightfc01f042014-09-08 14:12:24 -07004508 if (interactive || (isInjected && !isWakeKey)) {
RoboErikde9ba392014-09-26 12:51:01 -07004509 // When the device is interactive or the key is injected pass the
4510 // key to the application.
Jeff Brown4d396052010-10-29 21:50:21 -07004511 result = ACTION_PASS_TO_USER;
Jose Lima9546b202014-07-02 17:21:51 -07004512 isWakeKey = false;
Michael Wrightfc01f042014-09-08 14:12:24 -07004513 } else if (!interactive && shouldDispatchInputWhenNonInteractive()) {
4514 // If we're currently dozing with the screen on and the keyguard showing, pass the key
4515 // to the application but preserve its wake key status to make sure we still move
4516 // from dozing to fully interactive if we would normally go from off to fully
4517 // interactive.
4518 result = ACTION_PASS_TO_USER;
Jeff Brown4d396052010-10-29 21:50:21 -07004519 } else {
4520 // When the screen is off and the key is not injected, determine whether
4521 // to wake the device but don't pass the key to the application.
4522 result = 0;
Jeff Brown26875502014-01-30 21:47:47 -08004523 if (isWakeKey && (!down || !isWakeKeyWhenScreenOff(keyCode))) {
4524 isWakeKey = false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004525 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004526 }
4527
Justin Kohd378ad72013-04-01 12:18:26 -07004528 // If the key would be handled globally, just return the result, don't worry about special
4529 // key processing.
Jeff Brown13f00f02014-10-31 14:45:50 -07004530 if (isValidGlobalKey(keyCode)
4531 && mGlobalKeyManager.shouldHandleGlobalKey(keyCode, event)) {
Michael Wright85b1af62014-06-04 14:51:58 -07004532 if (isWakeKey) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004533 wakeUp(event.getEventTime(), mAllowTheaterModeWakeFromKey);
Michael Wright85b1af62014-06-04 14:51:58 -07004534 }
Justin Kohd378ad72013-04-01 12:18:26 -07004535 return result;
4536 }
4537
Jeff Brownbae8e772014-06-12 19:59:45 -07004538 boolean useHapticFeedback = down
4539 && (policyFlags & WindowManagerPolicy.FLAG_VIRTUAL) != 0
4540 && event.getRepeatCount() == 0;
4541
Jeff Brown4d396052010-10-29 21:50:21 -07004542 // Handle special keys.
4543 switch (keyCode) {
4544 case KeyEvent.KEYCODE_VOLUME_DOWN:
Jeff Brownb0418da2010-11-01 15:24:01 -07004545 case KeyEvent.KEYCODE_VOLUME_UP:
4546 case KeyEvent.KEYCODE_VOLUME_MUTE: {
RoboErik001c59c2015-01-26 15:53:51 -08004547 if (mUseTvRouting) {
4548 // On TVs volume keys never go to the foreground app
4549 result &= ~ACTION_PASS_TO_USER;
4550 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004551 if (keyCode == KeyEvent.KEYCODE_VOLUME_DOWN) {
4552 if (down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004553 if (interactive && !mScreenshotChordVolumeDownKeyTriggered
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004554 && (event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004555 mScreenshotChordVolumeDownKeyTriggered = true;
4556 mScreenshotChordVolumeDownKeyTime = event.getDownTime();
4557 mScreenshotChordVolumeDownKeyConsumed = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004558 cancelPendingPowerKeyAction();
4559 interceptScreenshotChord();
4560 }
4561 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07004562 mScreenshotChordVolumeDownKeyTriggered = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004563 cancelPendingScreenshotChordAction();
4564 }
4565 } else if (keyCode == KeyEvent.KEYCODE_VOLUME_UP) {
4566 if (down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004567 if (interactive && !mScreenshotChordVolumeUpKeyTriggered
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004568 && (event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004569 mScreenshotChordVolumeUpKeyTriggered = true;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004570 cancelPendingPowerKeyAction();
4571 cancelPendingScreenshotChordAction();
4572 }
4573 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07004574 mScreenshotChordVolumeUpKeyTriggered = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004575 cancelPendingScreenshotChordAction();
4576 }
4577 }
Jeff Brown4d396052010-10-29 21:50:21 -07004578 if (down) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07004579 TelecomManager telecomManager = getTelecommService();
4580 if (telecomManager != null) {
4581 if (telecomManager.isRinging()) {
Santos Cordon6848f722014-05-21 15:22:12 -07004582 // If an incoming call is ringing, either VOLUME key means
4583 // "silence ringer". We handle these keys here, rather than
4584 // in the InCallScreen, to make sure we'll respond to them
4585 // even if the InCallScreen hasn't come to the foreground yet.
4586 // Look for the DOWN event here, to agree with the "fallback"
4587 // behavior in the InCallScreen.
4588 Log.i(TAG, "interceptKeyBeforeQueueing:"
4589 + " VOLUME key-down while ringing: Silence ringer!");
Jeff Brown4d396052010-10-29 21:50:21 -07004590
Santos Cordon6848f722014-05-21 15:22:12 -07004591 // Silence the ringer. (It's safe to call this
4592 // even if the ringer has already been silenced.)
Tyler Gunnef9f6f92014-09-12 22:16:17 -07004593 telecomManager.silenceRinger();
Jeff Brown4d396052010-10-29 21:50:21 -07004594
Santos Cordon6848f722014-05-21 15:22:12 -07004595 // And *don't* pass this key thru to the current activity
4596 // (which is probably the InCallScreen.)
4597 result &= ~ACTION_PASS_TO_USER;
4598 break;
4599 }
Tyler Gunnef9f6f92014-09-12 22:16:17 -07004600 if (telecomManager.isInCall()
Santos Cordon6848f722014-05-21 15:22:12 -07004601 && (result & ACTION_PASS_TO_USER) == 0) {
4602 // If we are in call but we decided not to pass the key to
RoboErik430fc482014-06-12 15:49:20 -07004603 // the application, just pass it to the session service.
4604
4605 MediaSessionLegacyHelper.getHelper(mContext)
RoboErik3c45c292014-07-08 16:47:31 -07004606 .sendVolumeKeyEvent(event, false);
Santos Cordon6848f722014-05-21 15:22:12 -07004607 break;
Jeff Brown4d396052010-10-29 21:50:21 -07004608 }
4609 }
4610
RoboErik430fc482014-06-12 15:49:20 -07004611 if ((result & ACTION_PASS_TO_USER) == 0) {
RoboErik001c59c2015-01-26 15:53:51 -08004612 if (mUseTvRouting) {
4613 dispatchDirectAudioEvent(event);
4614 } else {
4615 // If we aren't passing to the user and no one else
4616 // handled it send it to the session manager to
4617 // figure out.
4618 MediaSessionLegacyHelper.getHelper(mContext)
4619 .sendVolumeKeyEvent(event, true);
4620 }
Jeff Brown4d396052010-10-29 21:50:21 -07004621 break;
4622 }
4623 }
4624 break;
4625 }
4626
4627 case KeyEvent.KEYCODE_ENDCALL: {
4628 result &= ~ACTION_PASS_TO_USER;
4629 if (down) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07004630 TelecomManager telecomManager = getTelecommService();
Jeff Brown4d396052010-10-29 21:50:21 -07004631 boolean hungUp = false;
Tyler Gunnef9f6f92014-09-12 22:16:17 -07004632 if (telecomManager != null) {
4633 hungUp = telecomManager.endCall();
Jeff Brown4d396052010-10-29 21:50:21 -07004634 }
Jeff Brown13f00f02014-10-31 14:45:50 -07004635 if (interactive && !hungUp) {
4636 mEndCallKeyHandled = false;
4637 mHandler.postDelayed(mEndCallLongPress,
4638 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
4639 } else {
4640 mEndCallKeyHandled = true;
4641 }
Jeff Brown4d396052010-10-29 21:50:21 -07004642 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07004643 if (!mEndCallKeyHandled) {
4644 mHandler.removeCallbacks(mEndCallLongPress);
4645 if (!canceled) {
4646 if ((mEndcallBehavior
4647 & Settings.System.END_BUTTON_BEHAVIOR_HOME) != 0) {
4648 if (goHome()) {
4649 break;
4650 }
Dianne Hackborn0041e972009-07-24 17:14:43 -07004651 }
Jeff Brown13f00f02014-10-31 14:45:50 -07004652 if ((mEndcallBehavior
4653 & Settings.System.END_BUTTON_BEHAVIOR_SLEEP) != 0) {
4654 mPowerManager.goToSleep(event.getEventTime(),
4655 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON, 0);
4656 isWakeKey = false;
4657 }
Jeff Brown4d396052010-10-29 21:50:21 -07004658 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004659 }
Jeff Brown4d396052010-10-29 21:50:21 -07004660 }
4661 break;
4662 }
4663
4664 case KeyEvent.KEYCODE_POWER: {
4665 result &= ~ACTION_PASS_TO_USER;
Jeff Brown13f00f02014-10-31 14:45:50 -07004666 isWakeKey = false; // wake-up will be handled separately
Jeff Brown4d396052010-10-29 21:50:21 -07004667 if (down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004668 interceptPowerKeyDown(event, interactive);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004669 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07004670 interceptPowerKeyUp(event, interactive, canceled);
Jeff Brown4d396052010-10-29 21:50:21 -07004671 }
4672 break;
4673 }
4674
Jeff Brown6212a492014-03-07 13:58:47 -08004675 case KeyEvent.KEYCODE_SLEEP: {
4676 result &= ~ACTION_PASS_TO_USER;
Jeff Brownbae8e772014-06-12 19:59:45 -07004677 if (!mPowerManager.isInteractive()) {
4678 useHapticFeedback = false; // suppress feedback if already non-interactive
4679 }
Jeff Brownc12035c2014-08-13 18:52:25 -07004680 mPowerManager.goToSleep(event.getEventTime(),
4681 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON, 0);
Jeff Brown6212a492014-03-07 13:58:47 -08004682 isWakeKey = false;
4683 break;
4684 }
4685
4686 case KeyEvent.KEYCODE_WAKEUP: {
4687 result &= ~ACTION_PASS_TO_USER;
Jose Lima9546b202014-07-02 17:21:51 -07004688 isWakeKey = true;
Jeff Brown6212a492014-03-07 13:58:47 -08004689 break;
4690 }
4691
Jeff Brown4d396052010-10-29 21:50:21 -07004692 case KeyEvent.KEYCODE_MEDIA_PLAY:
4693 case KeyEvent.KEYCODE_MEDIA_PAUSE:
4694 case KeyEvent.KEYCODE_MEDIA_PLAY_PAUSE:
Jeff Brown4d396052010-10-29 21:50:21 -07004695 case KeyEvent.KEYCODE_HEADSETHOOK:
4696 case KeyEvent.KEYCODE_MUTE:
4697 case KeyEvent.KEYCODE_MEDIA_STOP:
4698 case KeyEvent.KEYCODE_MEDIA_NEXT:
4699 case KeyEvent.KEYCODE_MEDIA_PREVIOUS:
4700 case KeyEvent.KEYCODE_MEDIA_REWIND:
4701 case KeyEvent.KEYCODE_MEDIA_RECORD:
Jaekyun Seokbfdad8e2013-07-08 13:53:21 +09004702 case KeyEvent.KEYCODE_MEDIA_FAST_FORWARD:
4703 case KeyEvent.KEYCODE_MEDIA_AUDIO_TRACK: {
RoboErikde9ba392014-09-26 12:51:01 -07004704 if (MediaSessionLegacyHelper.getHelper(mContext).isGlobalPriorityActive()) {
4705 // If the global session is active pass all media keys to it
4706 // instead of the active window.
4707 result &= ~ACTION_PASS_TO_USER;
4708 }
Jeff Brown4d396052010-10-29 21:50:21 -07004709 if ((result & ACTION_PASS_TO_USER) == 0) {
4710 // Only do this if we would otherwise not pass it to the user. In that
4711 // case, the PhoneWindow class will do the same thing, except it will
4712 // only do it if the showing app doesn't process the key on its own.
Jeff Brown40013652012-05-16 21:22:36 -07004713 // Note that we need to make a copy of the key event here because the
4714 // original key event will be recycled when we return.
Jeff Brown4d396052010-10-29 21:50:21 -07004715 mBroadcastWakeLock.acquire();
Jeff Brown40013652012-05-16 21:22:36 -07004716 Message msg = mHandler.obtainMessage(MSG_DISPATCH_MEDIA_KEY_WITH_WAKE_LOCK,
4717 new KeyEvent(event));
4718 msg.setAsynchronous(true);
4719 msg.sendToTarget();
Jeff Brown4d396052010-10-29 21:50:21 -07004720 }
4721 break;
Jeff Brown00fa7bd2010-07-02 15:37:36 -07004722 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004723
Jeff Brown4d396052010-10-29 21:50:21 -07004724 case KeyEvent.KEYCODE_CALL: {
4725 if (down) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07004726 TelecomManager telecomManager = getTelecommService();
4727 if (telecomManager != null) {
4728 if (telecomManager.isRinging()) {
Santos Cordon6848f722014-05-21 15:22:12 -07004729 Log.i(TAG, "interceptKeyBeforeQueueing:"
4730 + " CALL key-down while ringing: Answer the call!");
Tyler Gunnef9f6f92014-09-12 22:16:17 -07004731 telecomManager.acceptRingingCall();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004732
Santos Cordon6848f722014-05-21 15:22:12 -07004733 // And *don't* pass this key thru to the current activity
4734 // (which is presumably the InCallScreen.)
4735 result &= ~ACTION_PASS_TO_USER;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004736 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004737 }
Jeff Brown00fa7bd2010-07-02 15:37:36 -07004738 }
Jeff Brown4d396052010-10-29 21:50:21 -07004739 break;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004740 }
Michael Wright869a67c2014-08-26 19:33:06 -07004741 case KeyEvent.KEYCODE_VOICE_ASSIST: {
4742 // Only do this if we would otherwise not pass it to the user. In that case,
4743 // interceptKeyBeforeDispatching would apply a similar but different policy in
4744 // order to invoke voice assist actions. Note that we need to make a copy of the
4745 // key event here because the original key event will be recycled when we return.
4746 if ((result & ACTION_PASS_TO_USER) == 0 && !down) {
4747 mBroadcastWakeLock.acquire();
4748 Message msg = mHandler.obtainMessage(MSG_LAUNCH_VOICE_ASSIST_WITH_WAKE_LOCK,
4749 keyguardActive ? 1 : 0, 0);
4750 msg.setAsynchronous(true);
4751 msg.sendToTarget();
4752 }
4753 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004754 }
Jeff Brown26875502014-01-30 21:47:47 -08004755
Jeff Brownbae8e772014-06-12 19:59:45 -07004756 if (useHapticFeedback) {
4757 performHapticFeedbackLw(null, HapticFeedbackConstants.VIRTUAL_KEY, false);
4758 }
4759
Jeff Brown26875502014-01-30 21:47:47 -08004760 if (isWakeKey) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004761 wakeUp(event.getEventTime(), mAllowTheaterModeWakeFromKey);
Jeff Brown26875502014-01-30 21:47:47 -08004762 }
Bryce Lee584a4452014-10-21 15:55:55 -07004763
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004764 return result;
4765 }
4766
Jeff Brown1c2e4942012-11-06 16:32:01 -08004767 /**
Jeff Brown13f00f02014-10-31 14:45:50 -07004768 * Returns true if the key can have global actions attached to it.
4769 * We reserve all power management keys for the system since they require
4770 * very careful handling.
4771 */
4772 private static boolean isValidGlobalKey(int keyCode) {
4773 switch (keyCode) {
4774 case KeyEvent.KEYCODE_POWER:
4775 case KeyEvent.KEYCODE_WAKEUP:
4776 case KeyEvent.KEYCODE_SLEEP:
4777 return false;
4778 default:
4779 return true;
4780 }
4781 }
4782
4783 /**
Jeff Brown1c2e4942012-11-06 16:32:01 -08004784 * When the screen is off we ignore some keys that might otherwise typically
4785 * be considered wake keys. We filter them out here.
4786 *
4787 * {@link KeyEvent#KEYCODE_POWER} is notably absent from this list because it
4788 * is always considered a wake key.
4789 */
4790 private boolean isWakeKeyWhenScreenOff(int keyCode) {
4791 switch (keyCode) {
4792 // ignore volume keys unless docked
4793 case KeyEvent.KEYCODE_VOLUME_UP:
4794 case KeyEvent.KEYCODE_VOLUME_DOWN:
4795 case KeyEvent.KEYCODE_VOLUME_MUTE:
4796 return mDockMode != Intent.EXTRA_DOCK_STATE_UNDOCKED;
4797
4798 // ignore media and camera keys
4799 case KeyEvent.KEYCODE_MUTE:
4800 case KeyEvent.KEYCODE_HEADSETHOOK:
4801 case KeyEvent.KEYCODE_MEDIA_PLAY:
4802 case KeyEvent.KEYCODE_MEDIA_PAUSE:
4803 case KeyEvent.KEYCODE_MEDIA_PLAY_PAUSE:
4804 case KeyEvent.KEYCODE_MEDIA_STOP:
4805 case KeyEvent.KEYCODE_MEDIA_NEXT:
4806 case KeyEvent.KEYCODE_MEDIA_PREVIOUS:
4807 case KeyEvent.KEYCODE_MEDIA_REWIND:
4808 case KeyEvent.KEYCODE_MEDIA_RECORD:
4809 case KeyEvent.KEYCODE_MEDIA_FAST_FORWARD:
Jaekyun Seokbfdad8e2013-07-08 13:53:21 +09004810 case KeyEvent.KEYCODE_MEDIA_AUDIO_TRACK:
Jeff Brown1c2e4942012-11-06 16:32:01 -08004811 case KeyEvent.KEYCODE_CAMERA:
4812 return false;
4813 }
4814 return true;
4815 }
4816
4817
Jeff Brown56194eb2011-03-02 19:23:13 -08004818 /** {@inheritDoc} */
4819 @Override
Michael Wright70af00a2014-09-03 19:30:20 -07004820 public int interceptMotionBeforeQueueingNonInteractive(long whenNanos, int policyFlags) {
4821 if ((policyFlags & FLAG_WAKE) != 0) {
Bryce Lee5c138322014-11-03 08:26:09 -08004822 if (wakeUp(whenNanos / 1000000, mAllowTheaterModeWakeFromMotion)) {
4823 return 0;
4824 }
Michael Wright70af00a2014-09-03 19:30:20 -07004825 }
Bryce Lee5c138322014-11-03 08:26:09 -08004826
Michael Wright70af00a2014-09-03 19:30:20 -07004827 if (shouldDispatchInputWhenNonInteractive()) {
4828 return ACTION_PASS_TO_USER;
4829 }
Bryce Lee5c138322014-11-03 08:26:09 -08004830
Bryce Lee812d7022014-11-10 13:33:28 -08004831 // If we have not passed the action up and we are in theater mode without dreaming,
4832 // there will be no dream to intercept the touch and wake into ambient. The device should
4833 // wake up in this case.
4834 if (isTheaterModeEnabled() && (policyFlags & FLAG_WAKE) != 0) {
4835 wakeUp(whenNanos / 1000000, mAllowTheaterModeWakeFromMotionWhenNotDreaming);
4836 }
4837
Jeff Brown037c33e2014-04-09 00:31:55 -07004838 return 0;
Jeff Brown56194eb2011-03-02 19:23:13 -08004839 }
4840
Michael Wright70af00a2014-09-03 19:30:20 -07004841 private boolean shouldDispatchInputWhenNonInteractive() {
Bryce Lee5c138322014-11-03 08:26:09 -08004842 // Send events to keyguard while the screen is on.
Jim Millerab954542014-10-10 18:21:49 -07004843 if (isKeyguardShowingAndNotOccluded() && mDisplay != null
4844 && mDisplay.getState() != Display.STATE_OFF) {
Bryce Lee5c138322014-11-03 08:26:09 -08004845 return true;
4846 }
4847
4848 // Send events to a dozing dream even if the screen is off since the dream
4849 // is in control of the state of the screen.
4850 IDreamManager dreamManager = getDreamManager();
4851
4852 try {
4853 if (dreamManager != null && dreamManager.isDreaming()) {
4854 return true;
4855 }
4856 } catch (RemoteException e) {
4857 Slog.e(TAG, "RemoteException when checking if dreaming", e);
4858 }
4859
4860 // Otherwise, consume events since the user can't see what is being
4861 // interacted with.
4862 return false;
Michael Wright70af00a2014-09-03 19:30:20 -07004863 }
4864
RoboErik001c59c2015-01-26 15:53:51 -08004865 private void dispatchDirectAudioEvent(KeyEvent event) {
4866 if (event.getAction() != KeyEvent.ACTION_DOWN) {
4867 return;
4868 }
4869 int keyCode = event.getKeyCode();
4870 int flags = AudioManager.FLAG_SHOW_UI | AudioManager.FLAG_PLAY_SOUND;
4871 String pkgName = mContext.getOpPackageName();
4872 switch (keyCode) {
4873 case KeyEvent.KEYCODE_VOLUME_UP:
4874 try {
4875 if (mUseMasterVolume) {
4876 getAudioService().adjustMasterVolume(AudioManager.ADJUST_RAISE, flags,
4877 pkgName);
4878 } else {
4879 getAudioService().adjustSuggestedStreamVolume(AudioManager.ADJUST_RAISE,
4880 AudioManager.USE_DEFAULT_STREAM_TYPE, flags, pkgName);
4881 }
4882 } catch (RemoteException e) {
4883 Log.e(TAG, "Error dispatching volume up in dispatchTvAudioEvent.", e);
4884 }
4885 break;
4886 case KeyEvent.KEYCODE_VOLUME_DOWN:
4887 try {
4888 if (mUseMasterVolume) {
4889 getAudioService().adjustMasterVolume(AudioManager.ADJUST_LOWER, flags,
4890 pkgName);
4891 } else {
4892 getAudioService().adjustSuggestedStreamVolume(AudioManager.ADJUST_LOWER,
4893 AudioManager.USE_DEFAULT_STREAM_TYPE, flags, pkgName);
4894 }
4895 } catch (RemoteException e) {
4896 Log.e(TAG, "Error dispatching volume down in dispatchTvAudioEvent.", e);
4897 }
4898 break;
4899 case KeyEvent.KEYCODE_VOLUME_MUTE:
4900 try {
4901 if (event.getRepeatCount() == 0) {
4902 if (mUseMasterVolume) {
4903 getAudioService().adjustMasterVolume(AudioManager.ADJUST_TOGGLE_MUTE,
4904 flags, pkgName);
4905 } else {
4906 getAudioService().adjustSuggestedStreamVolume(
4907 AudioManager.ADJUST_TOGGLE_MUTE,
4908 AudioManager.USE_DEFAULT_STREAM_TYPE, flags, pkgName);
4909 }
4910 }
4911 } catch (RemoteException e) {
4912 Log.e(TAG, "Error dispatching mute in dispatchTvAudioEvent.", e);
4913 }
4914 break;
4915 }
4916 }
4917
Jeff Brown40013652012-05-16 21:22:36 -07004918 void dispatchMediaKeyWithWakeLock(KeyEvent event) {
4919 if (DEBUG_INPUT) {
4920 Slog.d(TAG, "dispatchMediaKeyWithWakeLock: " + event);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004921 }
4922
Jeff Brown40013652012-05-16 21:22:36 -07004923 if (mHavePendingMediaKeyRepeatWithWakeLock) {
4924 if (DEBUG_INPUT) {
4925 Slog.d(TAG, "dispatchMediaKeyWithWakeLock: canceled repeat");
4926 }
4927
4928 mHandler.removeMessages(MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK);
4929 mHavePendingMediaKeyRepeatWithWakeLock = false;
4930 mBroadcastWakeLock.release(); // pending repeat was holding onto the wake lock
4931 }
4932
4933 dispatchMediaKeyWithWakeLockToAudioService(event);
4934
4935 if (event.getAction() == KeyEvent.ACTION_DOWN
4936 && event.getRepeatCount() == 0) {
4937 mHavePendingMediaKeyRepeatWithWakeLock = true;
4938
4939 Message msg = mHandler.obtainMessage(
4940 MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK, event);
4941 msg.setAsynchronous(true);
4942 mHandler.sendMessageDelayed(msg, ViewConfiguration.getKeyRepeatTimeout());
4943 } else {
4944 mBroadcastWakeLock.release();
4945 }
4946 }
4947
4948 void dispatchMediaKeyRepeatWithWakeLock(KeyEvent event) {
4949 mHavePendingMediaKeyRepeatWithWakeLock = false;
4950
4951 KeyEvent repeatEvent = KeyEvent.changeTimeRepeat(event,
4952 SystemClock.uptimeMillis(), 1, event.getFlags() | KeyEvent.FLAG_LONG_PRESS);
4953 if (DEBUG_INPUT) {
4954 Slog.d(TAG, "dispatchMediaKeyRepeatWithWakeLock: " + repeatEvent);
4955 }
4956
4957 dispatchMediaKeyWithWakeLockToAudioService(repeatEvent);
4958 mBroadcastWakeLock.release();
4959 }
4960
4961 void dispatchMediaKeyWithWakeLockToAudioService(KeyEvent event) {
4962 if (ActivityManagerNative.isSystemReady()) {
RoboErik430fc482014-06-12 15:49:20 -07004963 MediaSessionLegacyHelper.getHelper(mContext).sendMediaButtonEvent(event, true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004964 }
4965 }
4966
Michael Wright869a67c2014-08-26 19:33:06 -07004967 void launchVoiceAssistWithWakeLock(boolean keyguardActive) {
4968 Intent voiceIntent =
4969 new Intent(RecognizerIntent.ACTION_VOICE_SEARCH_HANDS_FREE);
4970 voiceIntent.putExtra(RecognizerIntent.EXTRA_SECURE, keyguardActive);
4971 mContext.startActivityAsUser(voiceIntent, UserHandle.CURRENT_OR_SELF);
4972 mBroadcastWakeLock.release();
4973 }
4974
Mike Lockwood1753f7f2009-08-24 14:49:07 -07004975 BroadcastReceiver mDockReceiver = new BroadcastReceiver() {
Craig Mautnereee29c42013-01-17 14:44:34 -08004976 @Override
Mike Lockwood1753f7f2009-08-24 14:49:07 -07004977 public void onReceive(Context context, Intent intent) {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07004978 if (Intent.ACTION_DOCK_EVENT.equals(intent.getAction())) {
4979 mDockMode = intent.getIntExtra(Intent.EXTRA_DOCK_STATE,
4980 Intent.EXTRA_DOCK_STATE_UNDOCKED);
Daniel Sandler6396c722013-04-16 20:19:09 -04004981 } else {
4982 try {
4983 IUiModeManager uiModeService = IUiModeManager.Stub.asInterface(
4984 ServiceManager.getService(Context.UI_MODE_SERVICE));
4985 mUiMode = uiModeService.getCurrentModeType();
4986 } catch (RemoteException e) {
4987 }
Dianne Hackborn80fa1662009-10-07 14:02:10 -07004988 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07004989 updateRotation(true);
Craig Mautnereee29c42013-01-17 14:44:34 -08004990 synchronized (mLock) {
4991 updateOrientationListenerLp();
4992 }
Mike Lockwood1753f7f2009-08-24 14:49:07 -07004993 }
4994 };
4995
Jeff Brown6aaf2952012-10-05 16:01:08 -07004996 BroadcastReceiver mDreamReceiver = new BroadcastReceiver() {
4997 @Override
4998 public void onReceive(Context context, Intent intent) {
4999 if (Intent.ACTION_DREAMING_STARTED.equals(intent.getAction())) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005000 if (mKeyguardDelegate != null) {
5001 mKeyguardDelegate.onDreamingStarted();
Jeff Brown6aaf2952012-10-05 16:01:08 -07005002 }
5003 } else if (Intent.ACTION_DREAMING_STOPPED.equals(intent.getAction())) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005004 if (mKeyguardDelegate != null) {
5005 mKeyguardDelegate.onDreamingStopped();
Jeff Brown6aaf2952012-10-05 16:01:08 -07005006 }
5007 }
5008 }
5009 };
5010
Christopher Tate5e08af02012-09-21 17:17:22 -07005011 BroadcastReceiver mMultiuserReceiver = new BroadcastReceiver() {
5012 @Override
5013 public void onReceive(Context context, Intent intent) {
5014 if (Intent.ACTION_USER_SWITCHED.equals(intent.getAction())) {
5015 // tickle the settings observer: this first ensures that we're
5016 // observing the relevant settings for the newly-active user,
5017 // and then updates our own bookkeeping based on the now-
5018 // current user.
5019 mSettingsObserver.onChange(false);
John Spurlockce479d82012-11-29 09:52:21 -05005020
5021 // force a re-application of focused window sysui visibility.
5022 // the window may never have been shown for this user
5023 // e.g. the keyguard when going through the new-user setup flow
John Spurlock04db1762013-05-13 12:46:41 -04005024 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
John Spurlockce479d82012-11-29 09:52:21 -05005025 mLastSystemUiFlags = 0;
5026 updateSystemUiVisibilityLw();
5027 }
Christopher Tate5e08af02012-09-21 17:17:22 -07005028 }
5029 }
5030 };
5031
John Spurlockd9b70bd2014-02-06 17:02:44 -05005032 private final Runnable mRequestTransientNav = new Runnable() {
5033 @Override
5034 public void run() {
5035 requestTransientBars(mNavigationBar);
5036 }
5037 };
5038
John Spurlocke1f366f2013-08-05 12:22:40 -04005039 private void requestTransientBars(WindowState swipeTarget) {
John Spurlock04db1762013-05-13 12:46:41 -04005040 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
Maurice Lam99c6e072014-04-28 18:24:28 -07005041 if (!isUserSetupComplete()) {
5042 // Swipe-up for navigation bar is disabled during setup
5043 return;
5044 }
John Spurlock27735a42013-08-14 17:57:38 -04005045 boolean sb = mStatusBarController.checkShowTransientBarLw();
5046 boolean nb = mNavigationBarController.checkShowTransientBarLw();
John Spurlockad3e6cb2013-04-30 08:47:43 -04005047 if (sb || nb) {
John Spurlocke1f366f2013-08-05 12:22:40 -04005048 WindowState barTarget = sb ? mStatusBar : mNavigationBar;
5049 if (sb ^ nb && barTarget != swipeTarget) {
5050 if (DEBUG) Slog.d(TAG, "Not showing transient bar, wrong swipe target");
John Spurlockad3e6cb2013-04-30 08:47:43 -04005051 return;
5052 }
John Spurlock27735a42013-08-14 17:57:38 -04005053 if (sb) mStatusBarController.showTransient();
5054 if (nb) mNavigationBarController.showTransient();
John Spurlockf1a36642013-10-12 17:50:42 -04005055 mImmersiveModeConfirmation.confirmCurrentPrompt();
John Spurlockad3e6cb2013-04-30 08:47:43 -04005056 updateSystemUiVisibilityLw();
John Spurlock32beb2c2013-03-11 10:16:47 -04005057 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04005058 }
5059 }
5060
Jeff Brown3ee549c2014-09-22 20:14:39 -07005061 // Called on the PowerManager's Notifier thread.
Jeff Brownc38c9be2012-10-04 13:16:19 -07005062 @Override
Jeff Brown140ffc72014-05-01 15:18:00 -07005063 public void goingToSleep(int why) {
Dianne Hackborn74489012009-03-24 20:50:09 -07005064 EventLog.writeEvent(70000, 0);
Jeff Brown36c4db82014-09-19 12:05:31 -07005065 if (DEBUG_WAKEUP) Slog.i(TAG, "Going to sleep...");
Jeff Brown3ee549c2014-09-22 20:14:39 -07005066
5067 // We must get this work done here because the power manager will drop
5068 // the wake lock and let the system suspend once this function returns.
The Android Open Source Project0727d222009-03-11 12:11:58 -07005069 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005070 mAwake = false;
5071 mKeyguardDrawComplete = false;
Jeff Browna20dda42014-05-27 20:57:24 -07005072 updateWakeGestureListenerLp();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005073 updateOrientationListenerLp();
Mike Lockwood28569302010-01-28 11:54:40 -05005074 updateLockScreenTimeout();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005075 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005076
5077 if (mKeyguardDelegate != null) {
5078 mKeyguardDelegate.onScreenTurnedOff(why);
5079 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005080 }
5081
Jeff Brown13f00f02014-10-31 14:45:50 -07005082 private void wakeUpFromPowerKey(long eventTime) {
5083 wakeUp(eventTime, mAllowTheaterModeWakeFromPowerKey);
5084 }
5085
Bryce Lee5c138322014-11-03 08:26:09 -08005086 private boolean wakeUp(long wakeTime, boolean wakeInTheaterMode) {
Bryce Lee584a4452014-10-21 15:55:55 -07005087 if (!wakeInTheaterMode && isTheaterModeEnabled()) {
Bryce Lee5c138322014-11-03 08:26:09 -08005088 return false;
Bryce Lee584a4452014-10-21 15:55:55 -07005089 }
5090
5091 mPowerManager.wakeUp(wakeTime);
Bryce Lee5c138322014-11-03 08:26:09 -08005092 return true;
Bryce Lee584a4452014-10-21 15:55:55 -07005093 }
5094
Jeff Brown3ee549c2014-09-22 20:14:39 -07005095 // Called on the PowerManager's Notifier thread.
Jeff Brownc38c9be2012-10-04 13:16:19 -07005096 @Override
Jeff Brown36c4db82014-09-19 12:05:31 -07005097 public void wakingUp() {
Dianne Hackborn74489012009-03-24 20:50:09 -07005098 EventLog.writeEvent(70000, 1);
Jeff Brown36c4db82014-09-19 12:05:31 -07005099 if (DEBUG_WAKEUP) Slog.i(TAG, "Waking up...");
Craig Mautner8a0da012014-05-31 15:13:37 -07005100
Jeff Brown3ee549c2014-09-22 20:14:39 -07005101 // Since goToSleep performs these functions synchronously, we must
5102 // do the same here. We cannot post this work to a handler because
5103 // that might cause it to become reordered with respect to what
5104 // may happen in a future call to goToSleep.
The Android Open Source Project0727d222009-03-11 12:11:58 -07005105 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005106 mAwake = true;
5107 mKeyguardDrawComplete = false;
5108 if (mKeyguardDelegate != null) {
5109 mHandler.removeMessages(MSG_KEYGUARD_DRAWN_TIMEOUT);
5110 mHandler.sendEmptyMessageDelayed(MSG_KEYGUARD_DRAWN_TIMEOUT, 1000);
5111 }
5112
Jeff Browna20dda42014-05-27 20:57:24 -07005113 updateWakeGestureListenerLp();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005114 updateOrientationListenerLp();
Mike Lockwood28569302010-01-28 11:54:40 -05005115 updateLockScreenTimeout();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005116 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005117
Jim Miller5ecd8112013-01-09 18:50:26 -08005118 if (mKeyguardDelegate != null) {
Craig Mautner8a0da012014-05-31 15:13:37 -07005119 mKeyguardDelegate.onScreenTurnedOn(mKeyguardDelegateCallback);
Jeff Brown36c4db82014-09-19 12:05:31 -07005120 // ... eventually calls finishKeyguardDrawn
Jeff Brownc38c9be2012-10-04 13:16:19 -07005121 } else {
Craig Mautner8a0da012014-05-31 15:13:37 -07005122 if (DEBUG_WAKEUP) Slog.d(TAG, "null mKeyguardDelegate: setting mKeyguardDrawComplete.");
Jeff Brown36c4db82014-09-19 12:05:31 -07005123 finishKeyguardDrawn();
Jeff Brownc38c9be2012-10-04 13:16:19 -07005124 }
Jeff Brown36c4db82014-09-19 12:05:31 -07005125 }
5126
Jeff Brown36c4db82014-09-19 12:05:31 -07005127 private void finishKeyguardDrawn() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005128 synchronized (mLock) {
5129 if (!mAwake || mKeyguardDrawComplete) {
5130 return; // spurious
5131 }
5132
Jeff Brown36c4db82014-09-19 12:05:31 -07005133 mKeyguardDrawComplete = true;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005134 if (mKeyguardDelegate != null) {
5135 mHandler.removeMessages(MSG_KEYGUARD_DRAWN_TIMEOUT);
5136 }
5137 }
5138
5139 finishScreenTurningOn();
5140 }
5141
5142 // Called on the DisplayManager's DisplayPowerController thread.
5143 @Override
5144 public void screenTurnedOff() {
5145 if (DEBUG_WAKEUP) Slog.i(TAG, "Screen turned off...");
5146
5147 synchronized (mLock) {
5148 mScreenOnEarly = false;
5149 mScreenOnFully = false;
5150 mWindowManagerDrawComplete = false;
5151 mScreenOnListener = null;
5152 updateOrientationListenerLp();
Jeff Brown36c4db82014-09-19 12:05:31 -07005153 }
5154 }
5155
Jeff Brown3ee549c2014-09-22 20:14:39 -07005156 // Called on the DisplayManager's DisplayPowerController thread.
Jeff Brown36c4db82014-09-19 12:05:31 -07005157 @Override
5158 public void screenTurningOn(final ScreenOnListener screenOnListener) {
Jeff Brown36c4db82014-09-19 12:05:31 -07005159 if (DEBUG_WAKEUP) Slog.i(TAG, "Screen turning on...");
Jeff Brown36c4db82014-09-19 12:05:31 -07005160
Jeff Brown3ee549c2014-09-22 20:14:39 -07005161 synchronized (mLock) {
5162 mScreenOnEarly = true;
5163 mScreenOnFully = false;
5164 mWindowManagerDrawComplete = false;
5165 mScreenOnListener = screenOnListener;
5166 updateOrientationListenerLp();
5167 }
Jeff Brown36c4db82014-09-19 12:05:31 -07005168
Craig Mautnerc3daedd2014-09-13 11:17:23 -07005169 mWindowManagerInternal.waitForAllWindowsDrawn(mWindowManagerDrawCallback,
5170 WAITING_FOR_DRAWN_TIMEOUT);
Jeff Brown36c4db82014-09-19 12:05:31 -07005171 // ... eventually calls finishWindowsDrawn
5172 }
5173
Jeff Brown36c4db82014-09-19 12:05:31 -07005174 private void finishWindowsDrawn() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005175 synchronized (mLock) {
5176 if (!mScreenOnEarly || mWindowManagerDrawComplete) {
5177 return; // spurious
5178 }
5179
Jeff Brown36c4db82014-09-19 12:05:31 -07005180 mWindowManagerDrawComplete = true;
Jeff Brown36c4db82014-09-19 12:05:31 -07005181 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005182
5183 finishScreenTurningOn();
Jeff Brownc38c9be2012-10-04 13:16:19 -07005184 }
5185
Craig Mautner8a0da012014-05-31 15:13:37 -07005186 private void finishScreenTurningOn() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005187 final ScreenOnListener listener;
5188 final boolean enableScreen;
Jeff Brown36c4db82014-09-19 12:05:31 -07005189 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005190 if (DEBUG_WAKEUP) Slog.d(TAG,
5191 "finishScreenTurningOn: mAwake=" + mAwake
5192 + ", mScreenOnEarly=" + mScreenOnEarly
5193 + ", mScreenOnFully=" + mScreenOnFully
5194 + ", mKeyguardDrawComplete=" + mKeyguardDrawComplete
5195 + ", mWindowManagerDrawComplete=" + mWindowManagerDrawComplete);
5196
5197 if (mScreenOnFully || !mScreenOnEarly || !mWindowManagerDrawComplete
5198 || (mAwake && !mKeyguardDrawComplete)) {
5199 return; // spurious or not ready yet
Jeff Brown36c4db82014-09-19 12:05:31 -07005200 }
5201
Jeff Brown3ee549c2014-09-22 20:14:39 -07005202 if (DEBUG_WAKEUP) Slog.i(TAG, "Finished screen turning on...");
5203 listener = mScreenOnListener;
Craig Mautner13f6ea72014-06-23 14:57:02 -07005204 mScreenOnListener = null;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005205 mScreenOnFully = true;
5206
5207 // Remember the first time we draw the keyguard so we know when we're done with
5208 // the main part of booting and can enable the screen and hide boot messages.
5209 if (!mKeyguardDrawnOnce && mAwake) {
5210 mKeyguardDrawnOnce = true;
5211 enableScreen = true;
5212 if (mBootMessageNeedsHiding) {
5213 mBootMessageNeedsHiding = false;
5214 hideBootMessages();
5215 }
5216 } else {
5217 enableScreen = false;
5218 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005219 }
5220
Jeff Brown3ee549c2014-09-22 20:14:39 -07005221 if (listener != null) {
5222 listener.onScreenOn();
5223 }
Jeff Brown4fc45272012-10-10 18:28:14 -07005224
Jeff Brown3ee549c2014-09-22 20:14:39 -07005225 if (enableScreen) {
5226 try {
5227 mWindowManager.enableScreenIfNeeded();
5228 } catch (RemoteException unhandled) {
Jeff Brown36c4db82014-09-19 12:05:31 -07005229 }
Craig Mautnera631d492014-08-05 15:16:01 -07005230 }
5231 }
5232
5233 private void handleHideBootMessage() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005234 synchronized (mLock) {
5235 if (!mKeyguardDrawnOnce) {
5236 mBootMessageNeedsHiding = true;
5237 return; // keyguard hasn't drawn the first time yet, not done booting
5238 }
Craig Mautnera631d492014-08-05 15:16:01 -07005239 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005240
5241 if (mBootMsgDialog != null) {
5242 if (DEBUG_WAKEUP) Slog.d(TAG, "handleHideBootMessage: dismissing");
5243 mBootMsgDialog.dismiss();
5244 mBootMsgDialog = null;
Craig Mautnera631d492014-08-05 15:16:01 -07005245 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005246 }
5247
5248 @Override
Jeff Brown3ee549c2014-09-22 20:14:39 -07005249 public boolean isScreenOn() {
5250 return mScreenOnFully;
Dianne Hackborn08743722009-12-21 12:16:51 -08005251 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005252
Dianne Hackborn08743722009-12-21 12:16:51 -08005253 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005254 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005255 public void enableKeyguard(boolean enabled) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005256 if (mKeyguardDelegate != null) {
5257 mKeyguardDelegate.setKeyguardEnabled(enabled);
Mike Lockwood3a74bd32011-08-12 13:55:22 -07005258 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005259 }
5260
5261 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005262 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005263 public void exitKeyguardSecurely(OnKeyguardExitResult callback) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005264 if (mKeyguardDelegate != null) {
5265 mKeyguardDelegate.verifyUnlock(callback);
Mike Lockwood3a74bd32011-08-12 13:55:22 -07005266 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005267 }
5268
Jim Millerab954542014-10-10 18:21:49 -07005269 private boolean isKeyguardShowingAndNotOccluded() {
Jim Miller5ecd8112013-01-09 18:50:26 -08005270 if (mKeyguardDelegate == null) return false;
Jim Millerab954542014-10-10 18:21:49 -07005271 return mKeyguardDelegate.isShowing() && !mKeyguardOccluded;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005272 }
5273
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005274 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005275 @Override
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005276 public boolean isKeyguardLocked() {
5277 return keyguardOn();
5278 }
5279
5280 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005281 @Override
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005282 public boolean isKeyguardSecure() {
Jim Miller5ecd8112013-01-09 18:50:26 -08005283 if (mKeyguardDelegate == null) return false;
5284 return mKeyguardDelegate.isSecure();
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005285 }
5286
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005287 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005288 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005289 public boolean inKeyguardRestrictedKeyInputMode() {
Jim Miller5ecd8112013-01-09 18:50:26 -08005290 if (mKeyguardDelegate == null) return false;
5291 return mKeyguardDelegate.isInputRestricted();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005292 }
5293
Jose Lima9546b202014-07-02 17:21:51 -07005294 @Override
Dianne Hackborn90c52de2011-09-23 12:57:44 -07005295 public void dismissKeyguardLw() {
RoboErik8a2cfc32014-05-16 11:19:38 -07005296 if (mKeyguardDelegate != null && mKeyguardDelegate.isShowing()) {
Craig Mautnerc0d2d0a2014-10-31 16:25:15 -07005297 if (DEBUG_KEYGUARD) Slog.d(TAG, "PWM.dismissKeyguardLw");
Daniel Sandler1ce804392012-11-07 15:07:12 -05005298 mHandler.post(new Runnable() {
Jose Lima9546b202014-07-02 17:21:51 -07005299 @Override
Daniel Sandler1ce804392012-11-07 15:07:12 -05005300 public void run() {
Jorim Jaggi8de4311c2014-08-11 22:36:20 +02005301 // ask the keyguard to prompt the user to authenticate if necessary
5302 mKeyguardDelegate.dismiss();
5303 }
5304 });
5305 }
5306 }
5307
5308 public void notifyActivityDrawnForKeyguardLw() {
5309 if (mKeyguardDelegate != null) {
5310 mHandler.post(new Runnable() {
5311 @Override
5312 public void run() {
5313 mKeyguardDelegate.onActivityDrawn();
Daniel Sandler1ce804392012-11-07 15:07:12 -05005314 }
5315 });
Dianne Hackborn90c52de2011-09-23 12:57:44 -07005316 }
5317 }
5318
Jorim Jaggicff0acb2014-03-31 16:35:15 +02005319 @Override
5320 public boolean isKeyguardDrawnLw() {
5321 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005322 return mKeyguardDrawnOnce;
Jorim Jaggicff0acb2014-03-31 16:35:15 +02005323 }
5324 }
5325
Jorim Jaggi0d674622014-05-21 01:34:15 +02005326 @Override
Jorim Jaggie29b2db2014-05-30 23:17:03 +02005327 public void startKeyguardExitAnimation(long startTime, long fadeoutDuration) {
Jorim Jaggi0d674622014-05-21 01:34:15 +02005328 if (mKeyguardDelegate != null) {
Craig Mautnerc0d2d0a2014-10-31 16:25:15 -07005329 if (DEBUG_KEYGUARD) Slog.d(TAG, "PWM.startKeyguardExitAnimation");
Jorim Jaggie29b2db2014-05-30 23:17:03 +02005330 mKeyguardDelegate.startKeyguardExitAnimation(startTime, fadeoutDuration);
Jorim Jaggi0d674622014-05-21 01:34:15 +02005331 }
5332 }
5333
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005334 void sendCloseSystemWindows() {
Jorim Jaggib10e33f2015-02-04 21:57:40 +01005335 PhoneWindow.sendCloseSystemWindows(mContext, null);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005336 }
5337
5338 void sendCloseSystemWindows(String reason) {
Jorim Jaggib10e33f2015-02-04 21:57:40 +01005339 PhoneWindow.sendCloseSystemWindows(mContext, reason);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005340 }
Mitsuru Oshima831d0d92009-06-16 18:27:18 -07005341
Jeff Brown01a98dd2011-09-20 15:08:29 -07005342 @Override
5343 public int rotationForOrientationLw(int orientation, int lastRotation) {
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05005344 if (false) {
5345 Slog.v(TAG, "rotationForOrientationLw(orient="
5346 + orientation + ", last=" + lastRotation
5347 + "); user=" + mUserRotation + " "
5348 + ((mUserRotationMode == WindowManagerPolicy.USER_ROTATION_LOCKED)
5349 ? "USER_ROTATION_LOCKED" : "")
5350 );
5351 }
5352
Craig Mautner46ac6fa2013-08-01 10:06:34 -07005353 if (mForceDefaultOrientation) {
5354 return Surface.ROTATION_0;
5355 }
5356
The Android Open Source Project0727d222009-03-11 12:11:58 -07005357 synchronized (mLock) {
Jeff Brownc0347aa2011-09-23 17:26:09 -07005358 int sensorRotation = mOrientationListener.getProposedRotation(); // may be -1
5359 if (sensorRotation < 0) {
Jeff Brown0f862b42012-09-27 21:11:01 -07005360 sensorRotation = lastRotation;
Jeff Brownc0347aa2011-09-23 17:26:09 -07005361 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005362
Jeff Browndec6cf42011-11-15 14:08:20 -08005363 final int preferredRotation;
Jeff Brown2e7760e2012-04-11 15:14:55 -07005364 if (mLidState == LID_OPEN && mLidOpenRotation >= 0) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005365 // Ignore sensor when lid switch is open and rotation is forced.
5366 preferredRotation = mLidOpenRotation;
5367 } else if (mDockMode == Intent.EXTRA_DOCK_STATE_CAR
Jeff Brownc0347aa2011-09-23 17:26:09 -07005368 && (mCarDockEnablesAccelerometer || mCarDockRotation >= 0)) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005369 // Ignore sensor when in car dock unless explicitly enabled.
5370 // This case can override the behavior of NOSENSOR, and can also
5371 // enable 180 degree rotation while docked.
Jeff Brownc0347aa2011-09-23 17:26:09 -07005372 preferredRotation = mCarDockEnablesAccelerometer
Jeff Brown01a98dd2011-09-20 15:08:29 -07005373 ? sensorRotation : mCarDockRotation;
Jeff Brown1a693182011-11-08 14:44:16 -08005374 } else if ((mDockMode == Intent.EXTRA_DOCK_STATE_DESK
5375 || mDockMode == Intent.EXTRA_DOCK_STATE_LE_DESK
5376 || mDockMode == Intent.EXTRA_DOCK_STATE_HE_DESK)
Jeff Brownc0347aa2011-09-23 17:26:09 -07005377 && (mDeskDockEnablesAccelerometer || mDeskDockRotation >= 0)) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005378 // Ignore sensor when in desk dock unless explicitly enabled.
5379 // This case can override the behavior of NOSENSOR, and can also
5380 // enable 180 degree rotation while docked.
Jeff Brownc0347aa2011-09-23 17:26:09 -07005381 preferredRotation = mDeskDockEnablesAccelerometer
Jeff Brown01a98dd2011-09-20 15:08:29 -07005382 ? sensorRotation : mDeskDockRotation;
Jeff Brownc82c89ed2013-04-17 17:18:15 -07005383 } else if (mHdmiPlugged && mDemoHdmiRotationLock) {
5384 // Ignore sensor when plugged into HDMI when demo HDMI rotation lock enabled.
Jeff Browneb3e4b92011-12-06 19:54:24 -08005385 // Note that the dock orientation overrides the HDMI orientation.
Jeff Brownc82c89ed2013-04-17 17:18:15 -07005386 preferredRotation = mDemoHdmiRotation;
5387 } else if (mHdmiPlugged && mDockMode == Intent.EXTRA_DOCK_STATE_UNDOCKED
5388 && mUndockedHdmiRotation >= 0) {
5389 // Ignore sensor when plugged into HDMI and an undocked orientation has
5390 // been specified in the configuration (only for legacy devices without
5391 // full multi-display support).
5392 // Note that the dock orientation overrides the HDMI orientation.
5393 preferredRotation = mUndockedHdmiRotation;
Chong Zhangae6119ff2014-11-11 18:54:39 -08005394 } else if (mDemoRotationLock) {
5395 // Ignore sensor when demo rotation lock is enabled.
5396 // Note that the dock orientation and HDMI rotation lock override this.
5397 preferredRotation = mDemoRotation;
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005398 } else if (orientation == ActivityInfo.SCREEN_ORIENTATION_LOCKED) {
5399 // Application just wants to remain locked in the last rotation.
5400 preferredRotation = lastRotation;
Jeff Brownbcdfc622014-03-06 19:13:04 -08005401 } else if (!mSupportAutoRotation) {
5402 // If we don't support auto-rotation then bail out here and ignore
5403 // the sensor and any rotation lock settings.
5404 preferredRotation = -1;
Jeff Brown207673cd2012-06-05 17:47:11 -07005405 } else if ((mUserRotationMode == WindowManagerPolicy.USER_ROTATION_FREE
Jeff Brown01a98dd2011-09-20 15:08:29 -07005406 && (orientation == ActivityInfo.SCREEN_ORIENTATION_USER
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005407 || orientation == ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED
5408 || orientation == ActivityInfo.SCREEN_ORIENTATION_USER_LANDSCAPE
5409 || orientation == ActivityInfo.SCREEN_ORIENTATION_USER_PORTRAIT
5410 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_USER))
Jeff Brown01a98dd2011-09-20 15:08:29 -07005411 || orientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR
5412 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_SENSOR
5413 || orientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE
5414 || orientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT) {
5415 // Otherwise, use sensor only if requested by the application or enabled
5416 // by default for USER or UNSPECIFIED modes. Does not apply to NOSENSOR.
Jeff Brownd3187e32011-09-21 19:26:44 -07005417 if (mAllowAllRotations < 0) {
5418 // Can't read this during init() because the context doesn't
5419 // have display metrics at that time so we cannot determine
5420 // tablet vs. phone then.
5421 mAllowAllRotations = mContext.getResources().getBoolean(
5422 com.android.internal.R.bool.config_allowAllRotations) ? 1 : 0;
5423 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005424 if (sensorRotation != Surface.ROTATION_180
Jeff Brownd3187e32011-09-21 19:26:44 -07005425 || mAllowAllRotations == 1
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005426 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_SENSOR
5427 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_USER) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005428 preferredRotation = sensorRotation;
5429 } else {
5430 preferredRotation = lastRotation;
5431 }
Jeff Brown207673cd2012-06-05 17:47:11 -07005432 } else if (mUserRotationMode == WindowManagerPolicy.USER_ROTATION_LOCKED
5433 && orientation != ActivityInfo.SCREEN_ORIENTATION_NOSENSOR) {
5434 // Apply rotation lock. Does not apply to NOSENSOR.
5435 // The idea is that the user rotation expresses a weak preference for the direction
5436 // of gravity and as NOSENSOR is never affected by gravity, then neither should
5437 // NOSENSOR be affected by rotation lock (although it will be affected by docks).
Jeff Brown4dfce202011-10-05 12:00:10 -07005438 preferredRotation = mUserRotation;
Jeff Browndec6cf42011-11-15 14:08:20 -08005439 } else {
5440 // No overriding preference.
5441 // We will do exactly what the application asked us to do.
5442 preferredRotation = -1;
Jeff Brown01a98dd2011-09-20 15:08:29 -07005443 }
5444
Dianne Hackborne5439f22010-10-02 16:53:50 -07005445 switch (orientation) {
5446 case ActivityInfo.SCREEN_ORIENTATION_PORTRAIT:
Jeff Browndec6cf42011-11-15 14:08:20 -08005447 // Return portrait unless overridden.
5448 if (isAnyPortrait(preferredRotation)) {
5449 return preferredRotation;
5450 }
Dianne Hackborne5439f22010-10-02 16:53:50 -07005451 return mPortraitRotation;
Dianne Hackborne5439f22010-10-02 16:53:50 -07005452
Jeff Brown01a98dd2011-09-20 15:08:29 -07005453 case ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE:
Jeff Browndec6cf42011-11-15 14:08:20 -08005454 // Return landscape unless overridden.
5455 if (isLandscapeOrSeascape(preferredRotation)) {
5456 return preferredRotation;
5457 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005458 return mLandscapeRotation;
5459
5460 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT:
Jeff Browndec6cf42011-11-15 14:08:20 -08005461 // Return reverse portrait unless overridden.
5462 if (isAnyPortrait(preferredRotation)) {
5463 return preferredRotation;
5464 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005465 return mUpsideDownRotation;
5466
5467 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE:
Jeff Browndec6cf42011-11-15 14:08:20 -08005468 // Return seascape unless overridden.
5469 if (isLandscapeOrSeascape(preferredRotation)) {
5470 return preferredRotation;
5471 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005472 return mSeascapeRotation;
5473
5474 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE:
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005475 case ActivityInfo.SCREEN_ORIENTATION_USER_LANDSCAPE:
Jeff Brown01a98dd2011-09-20 15:08:29 -07005476 // Return either landscape rotation.
5477 if (isLandscapeOrSeascape(preferredRotation)) {
5478 return preferredRotation;
5479 }
5480 if (isLandscapeOrSeascape(lastRotation)) {
Jeff Brown4519f072011-01-23 13:16:01 -08005481 return lastRotation;
5482 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005483 return mLandscapeRotation;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005484
Jeff Brown01a98dd2011-09-20 15:08:29 -07005485 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT:
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005486 case ActivityInfo.SCREEN_ORIENTATION_USER_PORTRAIT:
Jeff Brown01a98dd2011-09-20 15:08:29 -07005487 // Return either portrait rotation.
5488 if (isAnyPortrait(preferredRotation)) {
5489 return preferredRotation;
5490 }
5491 if (isAnyPortrait(lastRotation)) {
5492 return lastRotation;
5493 }
5494 return mPortraitRotation;
5495
5496 default:
Jeff Brown4dfce202011-10-05 12:00:10 -07005497 // For USER, UNSPECIFIED, NOSENSOR, SENSOR and FULL_SENSOR,
5498 // just return the preferred orientation we already calculated.
Jeff Brown01a98dd2011-09-20 15:08:29 -07005499 if (preferredRotation >= 0) {
5500 return preferredRotation;
5501 }
Dianne Hackborndacea8c2011-04-21 17:26:39 -07005502 return Surface.ROTATION_0;
Daniel Sandlere7e5ac22011-02-22 16:10:21 -05005503 }
5504 }
Steve Howarda7bfe6a2010-09-23 16:47:49 -07005505 }
5506
Jeff Brown01a98dd2011-09-20 15:08:29 -07005507 @Override
5508 public boolean rotationHasCompatibleMetricsLw(int orientation, int rotation) {
5509 switch (orientation) {
5510 case ActivityInfo.SCREEN_ORIENTATION_PORTRAIT:
5511 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT:
5512 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT:
5513 return isAnyPortrait(rotation);
5514
5515 case ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE:
5516 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE:
5517 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE:
5518 return isLandscapeOrSeascape(rotation);
5519
5520 default:
5521 return true;
5522 }
Steve Howarda7bfe6a2010-09-23 16:47:49 -07005523 }
5524
Jeff Brownc0347aa2011-09-23 17:26:09 -07005525 @Override
5526 public void setRotationLw(int rotation) {
5527 mOrientationListener.setCurrentRotation(rotation);
5528 }
5529
Jeff Brown01a98dd2011-09-20 15:08:29 -07005530 private boolean isLandscapeOrSeascape(int rotation) {
5531 return rotation == mLandscapeRotation || rotation == mSeascapeRotation;
Dianne Hackborne5439f22010-10-02 16:53:50 -07005532 }
5533
Jeff Brown01a98dd2011-09-20 15:08:29 -07005534 private boolean isAnyPortrait(int rotation) {
5535 return rotation == mPortraitRotation || rotation == mUpsideDownRotation;
Dianne Hackborne5439f22010-10-02 16:53:50 -07005536 }
5537
Jose Lima9546b202014-07-02 17:21:51 -07005538 @Override
Svetoslav Ganov80943d82013-01-02 10:25:37 -08005539 public int getUserRotationMode() {
5540 return Settings.System.getIntForUser(mContext.getContentResolver(),
Brett Chabot7e55c402013-05-16 19:38:08 -07005541 Settings.System.ACCELEROMETER_ROTATION, 0, UserHandle.USER_CURRENT) != 0 ?
5542 WindowManagerPolicy.USER_ROTATION_FREE :
5543 WindowManagerPolicy.USER_ROTATION_LOCKED;
Svetoslav Ganov80943d82013-01-02 10:25:37 -08005544 }
Daniel Sandlerb73617d2010-08-17 00:41:00 -04005545
5546 // User rotation: to be used when all else fails in assigning an orientation to the device
Jose Lima9546b202014-07-02 17:21:51 -07005547 @Override
Daniel Sandlerb73617d2010-08-17 00:41:00 -04005548 public void setUserRotationMode(int mode, int rot) {
5549 ContentResolver res = mContext.getContentResolver();
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05005550
5551 // mUserRotationMode and mUserRotation will be assigned by the content observer
Daniel Sandlerb73617d2010-08-17 00:41:00 -04005552 if (mode == WindowManagerPolicy.USER_ROTATION_LOCKED) {
Christopher Tate5e08af02012-09-21 17:17:22 -07005553 Settings.System.putIntForUser(res,
Daniel Sandlerb73617d2010-08-17 00:41:00 -04005554 Settings.System.USER_ROTATION,
Christopher Tate5e08af02012-09-21 17:17:22 -07005555 rot,
5556 UserHandle.USER_CURRENT);
5557 Settings.System.putIntForUser(res,
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05005558 Settings.System.ACCELEROMETER_ROTATION,
Christopher Tate5e08af02012-09-21 17:17:22 -07005559 0,
5560 UserHandle.USER_CURRENT);
Daniel Sandlerb73617d2010-08-17 00:41:00 -04005561 } else {
Christopher Tate5e08af02012-09-21 17:17:22 -07005562 Settings.System.putIntForUser(res,
Daniel Sandlerb73617d2010-08-17 00:41:00 -04005563 Settings.System.ACCELEROMETER_ROTATION,
Christopher Tate5e08af02012-09-21 17:17:22 -07005564 1,
5565 UserHandle.USER_CURRENT);
Daniel Sandlerb73617d2010-08-17 00:41:00 -04005566 }
5567 }
5568
Jose Lima9546b202014-07-02 17:21:51 -07005569 @Override
Jeff Brownac143512012-04-05 18:57:33 -07005570 public void setSafeMode(boolean safeMode) {
5571 mSafeMode = safeMode;
5572 performHapticFeedbackLw(null, safeMode
5573 ? HapticFeedbackConstants.SAFE_MODE_ENABLED
5574 : HapticFeedbackConstants.SAFE_MODE_DISABLED, true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005575 }
Craig Mautnereda67292013-04-28 13:50:14 -07005576
Dianne Hackborn181ceb52009-08-27 22:16:40 -07005577 static long[] getLongIntArray(Resources r, int resid) {
5578 int[] ar = r.getIntArray(resid);
5579 if (ar == null) {
5580 return null;
5581 }
5582 long[] out = new long[ar.length];
5583 for (int i=0; i<ar.length; i++) {
5584 out[i] = ar[i];
5585 }
5586 return out;
5587 }
Craig Mautnereda67292013-04-28 13:50:14 -07005588
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005589 /** {@inheritDoc} */
Craig Mautnereda67292013-04-28 13:50:14 -07005590 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005591 public void systemReady() {
Jim Millerab954542014-10-10 18:21:49 -07005592 mKeyguardDelegate = new KeyguardServiceDelegate(mContext);
Mike Lockwooded8902d2013-11-15 11:01:47 -08005593 mKeyguardDelegate.onSystemReady();
5594
Michael Wright3818c922014-09-02 13:59:07 -07005595 readCameraLensCoverState();
Jeff Brown4f5fa282014-06-12 19:19:15 -07005596 updateUiMode();
Dianne Hackbornb1a79802009-09-29 15:18:31 -07005597 synchronized (mLock) {
5598 updateOrientationListenerLp();
Dianne Hackbornc777e072010-02-12 13:07:59 -08005599 mSystemReady = true;
5600 mHandler.post(new Runnable() {
Craig Mautnereda67292013-04-28 13:50:14 -07005601 @Override
Dianne Hackbornc777e072010-02-12 13:07:59 -08005602 public void run() {
5603 updateSettings();
5604 }
5605 });
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005606 }
5607 }
Dianne Hackborn661cd522011-08-22 00:26:20 -07005608
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07005609 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005610 @Override
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07005611 public void systemBooted() {
Jim Millere5f910a2013-10-16 18:15:46 -07005612 if (mKeyguardDelegate != null) {
Jason Monk5eeebf52014-09-26 12:36:51 -04005613 mKeyguardDelegate.bindService(mContext);
Jim Millere5f910a2013-10-16 18:15:46 -07005614 mKeyguardDelegate.onBootCompleted();
5615 }
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07005616 synchronized (mLock) {
5617 mSystemBooted = true;
5618 }
Jeff Brown36c4db82014-09-19 12:05:31 -07005619 wakingUp();
5620 screenTurningOn(null);
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07005621 }
5622
Dianne Hackborn661cd522011-08-22 00:26:20 -07005623 ProgressDialog mBootMsgDialog = null;
5624
5625 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005626 @Override
Dianne Hackborn661cd522011-08-22 00:26:20 -07005627 public void showBootMessage(final CharSequence msg, final boolean always) {
5628 mHandler.post(new Runnable() {
5629 @Override public void run() {
5630 if (mBootMsgDialog == null) {
Craig Stout4c0cb8a2014-04-04 13:03:10 -07005631 int theme;
5632 if (mContext.getPackageManager().hasSystemFeature(
5633 PackageManager.FEATURE_WATCH)) {
5634 theme = com.android.internal.R.style.Theme_Micro_Dialog_Alert;
5635 } else if (mContext.getPackageManager().hasSystemFeature(
5636 PackageManager.FEATURE_TELEVISION)) {
5637 theme = com.android.internal.R.style.Theme_Leanback_Dialog_Alert;
5638 } else {
5639 theme = 0;
5640 }
Vinod Krishnanfa8fc412014-04-18 14:35:53 -07005641
5642 mBootMsgDialog = new ProgressDialog(mContext, theme) {
Dianne Hackborn295e3c22011-08-25 13:19:08 -07005643 // This dialog will consume all events coming in to
5644 // it, to avoid it trying to do things too early in boot.
5645 @Override public boolean dispatchKeyEvent(KeyEvent event) {
5646 return true;
5647 }
5648 @Override public boolean dispatchKeyShortcutEvent(KeyEvent event) {
5649 return true;
5650 }
5651 @Override public boolean dispatchTouchEvent(MotionEvent ev) {
5652 return true;
5653 }
5654 @Override public boolean dispatchTrackballEvent(MotionEvent ev) {
5655 return true;
5656 }
5657 @Override public boolean dispatchGenericMotionEvent(MotionEvent ev) {
5658 return true;
5659 }
5660 @Override public boolean dispatchPopulateAccessibilityEvent(
5661 AccessibilityEvent event) {
5662 return true;
5663 }
5664 };
Jeff Hao9f60c082014-10-28 18:51:07 -07005665 if (mContext.getPackageManager().isUpgrade()) {
5666 mBootMsgDialog.setTitle(R.string.android_upgrading_title);
5667 } else {
5668 mBootMsgDialog.setTitle(R.string.android_start_title);
5669 }
Dianne Hackborn661cd522011-08-22 00:26:20 -07005670 mBootMsgDialog.setProgressStyle(ProgressDialog.STYLE_SPINNER);
5671 mBootMsgDialog.setIndeterminate(true);
5672 mBootMsgDialog.getWindow().setType(
Dianne Hackborn29aae6f2011-08-18 18:30:09 -07005673 WindowManager.LayoutParams.TYPE_BOOT_PROGRESS);
Dianne Hackborn661cd522011-08-22 00:26:20 -07005674 mBootMsgDialog.getWindow().addFlags(
5675 WindowManager.LayoutParams.FLAG_DIM_BEHIND
5676 | WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN);
5677 mBootMsgDialog.getWindow().setDimAmount(1);
Dianne Hackbornd9efb952011-12-07 14:56:51 -08005678 WindowManager.LayoutParams lp = mBootMsgDialog.getWindow().getAttributes();
5679 lp.screenOrientation = ActivityInfo.SCREEN_ORIENTATION_NOSENSOR;
5680 mBootMsgDialog.getWindow().setAttributes(lp);
Dianne Hackborn661cd522011-08-22 00:26:20 -07005681 mBootMsgDialog.setCancelable(false);
5682 mBootMsgDialog.show();
5683 }
5684 mBootMsgDialog.setMessage(msg);
5685 }
5686 });
5687 }
5688
5689 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005690 @Override
Dianne Hackborn661cd522011-08-22 00:26:20 -07005691 public void hideBootMessages() {
Craig Mautnera631d492014-08-05 15:16:01 -07005692 mHandler.sendEmptyMessage(MSG_HIDE_BOOT_MESSAGE);
Dianne Hackborn661cd522011-08-22 00:26:20 -07005693 }
5694
Mike Lockwood28569302010-01-28 11:54:40 -05005695 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005696 @Override
Mike Lockwood28569302010-01-28 11:54:40 -05005697 public void userActivity() {
Dianne Hackborndf89e652011-10-06 22:35:11 -07005698 // ***************************************
5699 // NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE
5700 // ***************************************
5701 // THIS IS CALLED FROM DEEP IN THE POWER MANAGER
5702 // WITH ITS LOCKS HELD.
5703 //
5704 // This code must be VERY careful about the locks
5705 // it acquires.
5706 // In fact, the current code acquires way too many,
5707 // and probably has lurking deadlocks.
5708
Mike Lockwood28569302010-01-28 11:54:40 -05005709 synchronized (mScreenLockTimeout) {
5710 if (mLockScreenTimerActive) {
5711 // reset the timer
5712 mHandler.removeCallbacks(mScreenLockTimeout);
5713 mHandler.postDelayed(mScreenLockTimeout, mLockScreenTimeout);
5714 }
5715 }
Daniel Sandler0601eb72011-04-13 01:01:32 -04005716 }
5717
Adam Cohenf7522022012-10-03 20:03:18 -07005718 class ScreenLockTimeout implements Runnable {
5719 Bundle options;
5720
5721 @Override
Mike Lockwood28569302010-01-28 11:54:40 -05005722 public void run() {
5723 synchronized (this) {
5724 if (localLOGV) Log.v(TAG, "mScreenLockTimeout activating keyguard");
Jim Miller5ecd8112013-01-09 18:50:26 -08005725 if (mKeyguardDelegate != null) {
5726 mKeyguardDelegate.doKeyguardTimeout(options);
Mike Lockwood3a74bd32011-08-12 13:55:22 -07005727 }
Mike Lockwood28569302010-01-28 11:54:40 -05005728 mLockScreenTimerActive = false;
Adam Cohenf7522022012-10-03 20:03:18 -07005729 options = null;
Mike Lockwood28569302010-01-28 11:54:40 -05005730 }
5731 }
Mike Lockwood28569302010-01-28 11:54:40 -05005732
Adam Cohenf7522022012-10-03 20:03:18 -07005733 public void setLockOptions(Bundle options) {
5734 this.options = options;
5735 }
5736 }
5737
5738 ScreenLockTimeout mScreenLockTimeout = new ScreenLockTimeout();
5739
Jose Lima9546b202014-07-02 17:21:51 -07005740 @Override
Adam Cohenf7522022012-10-03 20:03:18 -07005741 public void lockNow(Bundle options) {
Jim Miller93c518e2012-01-17 15:55:31 -08005742 mContext.enforceCallingOrSelfPermission(android.Manifest.permission.DEVICE_POWER, null);
5743 mHandler.removeCallbacks(mScreenLockTimeout);
Adam Cohenf7522022012-10-03 20:03:18 -07005744 if (options != null) {
5745 // In case multiple calls are made to lockNow, we don't wipe out the options
5746 // until the runnable actually executes.
5747 mScreenLockTimeout.setLockOptions(options);
5748 }
Jim Miller93c518e2012-01-17 15:55:31 -08005749 mHandler.post(mScreenLockTimeout);
5750 }
5751
Mike Lockwood28569302010-01-28 11:54:40 -05005752 private void updateLockScreenTimeout() {
5753 synchronized (mScreenLockTimeout) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005754 boolean enable = (mAllowLockscreenWhenOn && mAwake &&
Jim Miller5ecd8112013-01-09 18:50:26 -08005755 mKeyguardDelegate != null && mKeyguardDelegate.isSecure());
Mike Lockwood28569302010-01-28 11:54:40 -05005756 if (mLockScreenTimerActive != enable) {
5757 if (enable) {
5758 if (localLOGV) Log.v(TAG, "setting lockscreen timer");
5759 mHandler.postDelayed(mScreenLockTimeout, mLockScreenTimeout);
5760 } else {
5761 if (localLOGV) Log.v(TAG, "clearing lockscreen timer");
5762 mHandler.removeCallbacks(mScreenLockTimeout);
5763 }
5764 mLockScreenTimerActive = enable;
5765 }
5766 }
5767 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005768
5769 /** {@inheritDoc} */
Craig Mautnereda67292013-04-28 13:50:14 -07005770 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005771 public void enableScreenAfterBoot() {
5772 readLidState();
Jeff Brownc458ce92012-04-30 14:58:40 -07005773 applyLidSwitchState();
Jeff Brown01a98dd2011-09-20 15:08:29 -07005774 updateRotation(true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005775 }
Dianne Hackbornf54c8f92009-09-19 14:03:57 -07005776
Jeff Brownc458ce92012-04-30 14:58:40 -07005777 private void applyLidSwitchState() {
Jeff Brownc458ce92012-04-30 14:58:40 -07005778 if (mLidState == LID_CLOSED && mLidControlsSleep) {
Jeff Brown6d8fd272014-05-20 21:24:38 -07005779 mPowerManager.goToSleep(SystemClock.uptimeMillis(),
Jeff Brownc12035c2014-08-13 18:52:25 -07005780 PowerManager.GO_TO_SLEEP_REASON_LID_SWITCH,
Jeff Brown6d8fd272014-05-20 21:24:38 -07005781 PowerManager.GO_TO_SLEEP_FLAG_NO_DOZE);
Jeff Brownc458ce92012-04-30 14:58:40 -07005782 }
Jeff Browna20dda42014-05-27 20:57:24 -07005783
5784 synchronized (mLock) {
5785 updateWakeGestureListenerLp();
5786 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005787 }
5788
Jeff Brown4f5fa282014-06-12 19:19:15 -07005789 void updateUiMode() {
5790 if (mUiModeManager == null) {
5791 mUiModeManager = IUiModeManager.Stub.asInterface(
5792 ServiceManager.getService(Context.UI_MODE_SERVICE));
5793 }
5794 try {
5795 mUiMode = mUiModeManager.getCurrentModeType();
5796 } catch (RemoteException e) {
5797 }
5798 }
5799
Jeff Brown01a98dd2011-09-20 15:08:29 -07005800 void updateRotation(boolean alwaysSendConfiguration) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005801 try {
5802 //set orientation on WindowManager
Dianne Hackbornf87d1962012-04-04 12:48:24 -07005803 mWindowManager.updateRotation(alwaysSendConfiguration, false);
5804 } catch (RemoteException e) {
5805 // Ignore
5806 }
5807 }
5808
5809 void updateRotation(boolean alwaysSendConfiguration, boolean forceRelayout) {
5810 try {
5811 //set orientation on WindowManager
5812 mWindowManager.updateRotation(alwaysSendConfiguration, forceRelayout);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005813 } catch (RemoteException e) {
5814 // Ignore
5815 }
5816 }
5817
Daniel Sandler6396c722013-04-16 20:19:09 -04005818 /**
5819 * Return an Intent to launch the currently active dock app as home. Returns
5820 * null if the standard home should be launched, which is the case if any of the following is
5821 * true:
5822 * <ul>
5823 * <li>The device is not in either car mode or desk mode
5824 * <li>The device is in car mode but ENABLE_CAR_DOCK_HOME_CAPTURE is false
5825 * <li>The device is in desk mode but ENABLE_DESK_DOCK_HOME_CAPTURE is false
5826 * <li>The device is in car mode but there's no CAR_DOCK app with METADATA_DOCK_HOME
5827 * <li>The device is in desk mode but there's no DESK_DOCK app with METADATA_DOCK_HOME
5828 * </ul>
Craig Mautnereda67292013-04-28 13:50:14 -07005829 * @return A dock intent.
Daniel Sandler6396c722013-04-16 20:19:09 -04005830 */
5831 Intent createHomeDockIntent() {
5832 Intent intent = null;
5833
5834 // What home does is based on the mode, not the dock state. That
5835 // is, when in car mode you should be taken to car home regardless
5836 // of whether we are actually in a car dock.
5837 if (mUiMode == Configuration.UI_MODE_TYPE_CAR) {
5838 if (ENABLE_CAR_DOCK_HOME_CAPTURE) {
5839 intent = mCarDockIntent;
5840 }
5841 } else if (mUiMode == Configuration.UI_MODE_TYPE_DESK) {
5842 if (ENABLE_DESK_DOCK_HOME_CAPTURE) {
5843 intent = mDeskDockIntent;
5844 }
Jeff Brown4f5fa282014-06-12 19:19:15 -07005845 } else if (mUiMode == Configuration.UI_MODE_TYPE_WATCH
5846 && (mDockMode == Intent.EXTRA_DOCK_STATE_DESK
5847 || mDockMode == Intent.EXTRA_DOCK_STATE_HE_DESK
5848 || mDockMode == Intent.EXTRA_DOCK_STATE_LE_DESK)) {
5849 // Always launch dock home from home when watch is docked, if it exists.
5850 intent = mDeskDockIntent;
Daniel Sandler6396c722013-04-16 20:19:09 -04005851 }
5852
5853 if (intent == null) {
5854 return null;
5855 }
5856
5857 ActivityInfo ai = null;
5858 ResolveInfo info = mContext.getPackageManager().resolveActivityAsUser(
5859 intent,
John Spurlockf56bef12013-07-09 09:51:46 -04005860 PackageManager.MATCH_DEFAULT_ONLY | PackageManager.GET_META_DATA,
Craig Mautnerd625ab22013-09-06 13:40:31 -07005861 mCurrentUserId);
Daniel Sandler6396c722013-04-16 20:19:09 -04005862 if (info != null) {
5863 ai = info.activityInfo;
5864 }
5865 if (ai != null
5866 && ai.metaData != null
5867 && ai.metaData.getBoolean(Intent.METADATA_DOCK_HOME)) {
5868 intent = new Intent(intent);
5869 intent.setClassName(ai.packageName, ai.name);
5870 return intent;
5871 }
5872
5873 return null;
5874 }
5875
Bryce Lee01b0c5f2015-02-05 18:24:04 -08005876 void startDockOrHome(boolean fromHomeKey) {
John Spurlockc8b46ca2013-04-08 12:59:26 -04005877 awakenDreams();
Daniel Sandler6396c722013-04-16 20:19:09 -04005878
5879 Intent dock = createHomeDockIntent();
5880 if (dock != null) {
5881 try {
Bryce Lee01b0c5f2015-02-05 18:24:04 -08005882 if (fromHomeKey) {
5883 dock.putExtra(WindowManagerPolicy.EXTRA_FROM_HOME_KEY, fromHomeKey);
5884 }
Daniel Sandler6396c722013-04-16 20:19:09 -04005885 mContext.startActivityAsUser(dock, UserHandle.CURRENT);
5886 return;
5887 } catch (ActivityNotFoundException e) {
5888 }
5889 }
5890
Bryce Lee01b0c5f2015-02-05 18:24:04 -08005891 Intent intent;
5892
5893 if (fromHomeKey) {
5894 intent = new Intent(mHomeIntent);
5895 intent.putExtra(WindowManagerPolicy.EXTRA_FROM_HOME_KEY, fromHomeKey);
5896 } else {
5897 intent = mHomeIntent;
5898 }
5899
5900 mContext.startActivityAsUser(intent, UserHandle.CURRENT);
Dianne Hackborn39c2d712009-09-22 11:41:31 -07005901 }
Craig Mautnereda67292013-04-28 13:50:14 -07005902
Dianne Hackborn39c2d712009-09-22 11:41:31 -07005903 /**
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005904 * goes to the home screen
5905 * @return whether it did anything
5906 */
5907 boolean goHome() {
5908 if (false) {
5909 // This code always brings home to the front.
Dianne Hackborn256dd3b2009-05-19 18:51:21 -07005910 try {
5911 ActivityManagerNative.getDefault().stopAppSwitches();
5912 } catch (RemoteException e) {
5913 }
Dianne Hackborn94a679d2009-07-28 17:51:07 -07005914 sendCloseSystemWindows();
Bryce Lee01b0c5f2015-02-05 18:24:04 -08005915 startDockOrHome(false /*fromHomeKey*/);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005916 } else {
5917 // This code brings home to the front or, if it is already
5918 // at the front, puts the device to sleep.
5919 try {
Wink Savilled2e6a332010-02-12 12:12:06 -08005920 if (SystemProperties.getInt("persist.sys.uts-test-mode", 0) == 1) {
5921 /// Roll back EndcallBehavior as the cupcake design to pass P1 lab entry.
5922 Log.d(TAG, "UTS-TEST-MODE");
5923 } else {
5924 ActivityManagerNative.getDefault().stopAppSwitches();
5925 sendCloseSystemWindows();
Daniel Sandler6396c722013-04-16 20:19:09 -04005926 Intent dock = createHomeDockIntent();
5927 if (dock != null) {
5928 int result = ActivityManagerNative.getDefault()
5929 .startActivityAsUser(null, null, dock,
5930 dock.resolveTypeIfNeeded(mContext.getContentResolver()),
5931 null, null, 0,
5932 ActivityManager.START_FLAG_ONLY_IF_NEEDED,
Jeff Hao1b012d32014-08-20 10:35:34 -07005933 null, null, UserHandle.USER_CURRENT);
Daniel Sandler6396c722013-04-16 20:19:09 -04005934 if (result == ActivityManager.START_RETURN_INTENT_TO_CALLER) {
5935 return false;
5936 }
5937 }
Dianne Hackborn39c2d712009-09-22 11:41:31 -07005938 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005939 int result = ActivityManagerNative.getDefault()
Dianne Hackbornf265ea92013-01-31 15:00:51 -08005940 .startActivityAsUser(null, null, mHomeIntent,
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005941 mHomeIntent.resolveTypeIfNeeded(mContext.getContentResolver()),
Dianne Hackborna4972e92012-03-14 10:38:05 -07005942 null, null, 0,
5943 ActivityManager.START_FLAG_ONLY_IF_NEEDED,
Jeff Hao1b012d32014-08-20 10:35:34 -07005944 null, null, UserHandle.USER_CURRENT);
Dianne Hackborna4972e92012-03-14 10:38:05 -07005945 if (result == ActivityManager.START_RETURN_INTENT_TO_CALLER) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005946 return false;
5947 }
5948 } catch (RemoteException ex) {
5949 // bummer, the activity manager, which is in this process, is dead
5950 }
5951 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005952 return true;
5953 }
Craig Mautnereda67292013-04-28 13:50:14 -07005954
5955 @Override
The Android Open Source Project0727d222009-03-11 12:11:58 -07005956 public void setCurrentOrientationLw(int newOrientation) {
5957 synchronized (mLock) {
5958 if (newOrientation != mCurrentAppOrientation) {
5959 mCurrentAppOrientation = newOrientation;
5960 updateOrientationListenerLp();
5961 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005962 }
5963 }
Amith Yamasanic33cb712010-02-10 15:21:49 -08005964
Svetoslav Ganov7befb7d2012-09-27 16:49:23 -07005965 private void performAuditoryFeedbackForAccessibilityIfNeed() {
5966 if (!isGlobalAccessibilityGestureEnabled()) {
5967 return;
5968 }
5969 AudioManager audioManager = (AudioManager) mContext.getSystemService(
5970 Context.AUDIO_SERVICE);
5971 if (audioManager.isSilentMode()) {
5972 return;
5973 }
5974 Ringtone ringTone = RingtoneManager.getRingtone(mContext,
5975 Settings.System.DEFAULT_NOTIFICATION_URI);
5976 ringTone.setStreamType(AudioManager.STREAM_MUSIC);
5977 ringTone.play();
5978 }
Craig Mautnereda67292013-04-28 13:50:14 -07005979
Bryce Lee584a4452014-10-21 15:55:55 -07005980 private boolean isTheaterModeEnabled() {
5981 return Settings.Global.getInt(mContext.getContentResolver(),
5982 Settings.Global.THEATER_MODE_ON, 0) == 1;
5983 }
5984
Svetoslav Ganov7befb7d2012-09-27 16:49:23 -07005985 private boolean isGlobalAccessibilityGestureEnabled() {
5986 return Settings.Global.getInt(mContext.getContentResolver(),
5987 Settings.Global.ENABLE_ACCESSIBILITY_GLOBAL_GESTURE_ENABLED, 0) == 1;
5988 }
5989
Craig Mautnereda67292013-04-28 13:50:14 -07005990 @Override
The Android Open Source Project0727d222009-03-11 12:11:58 -07005991 public boolean performHapticFeedbackLw(WindowState win, int effectId, boolean always) {
Svetoslav Ganov96179212012-10-10 14:17:45 -07005992 if (!mVibrator.hasVibrator()) {
5993 return false;
5994 }
Christopher Tate5e08af02012-09-21 17:17:22 -07005995 final boolean hapticsDisabled = Settings.System.getIntForUser(mContext.getContentResolver(),
5996 Settings.System.HAPTIC_FEEDBACK_ENABLED, 0, UserHandle.USER_CURRENT) == 0;
Jeff Brown82379ba2014-07-25 19:03:28 -07005997 if (hapticsDisabled && !always) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005998 return false;
5999 }
Amith Yamasanic33cb712010-02-10 15:21:49 -08006000 long[] pattern = null;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006001 switch (effectId) {
6002 case HapticFeedbackConstants.LONG_PRESS:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006003 pattern = mLongPressVibePattern;
6004 break;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006005 case HapticFeedbackConstants.VIRTUAL_KEY:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006006 pattern = mVirtualKeyVibePattern;
6007 break;
6008 case HapticFeedbackConstants.KEYBOARD_TAP:
6009 pattern = mKeyboardTapVibePattern;
6010 break;
Fabrice Di Meglioeeff63a2013-08-05 12:07:24 -07006011 case HapticFeedbackConstants.CLOCK_TICK:
6012 pattern = mClockTickVibePattern;
6013 break;
Fabrice Di Megliobd9152f2013-10-01 11:21:31 -07006014 case HapticFeedbackConstants.CALENDAR_DATE:
6015 pattern = mCalendarDateVibePattern;
6016 break;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006017 case HapticFeedbackConstants.SAFE_MODE_DISABLED:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006018 pattern = mSafeModeDisabledVibePattern;
6019 break;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006020 case HapticFeedbackConstants.SAFE_MODE_ENABLED:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006021 pattern = mSafeModeEnabledVibePattern;
6022 break;
Amith Yamasanic33cb712010-02-10 15:21:49 -08006023 default:
6024 return false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006025 }
Dianne Hackbornf265ea92013-01-31 15:00:51 -08006026 int owningUid;
6027 String owningPackage;
6028 if (win != null) {
6029 owningUid = win.getOwningUid();
6030 owningPackage = win.getOwningPackage();
6031 } else {
6032 owningUid = android.os.Process.myUid();
Dianne Hackborn95d78532013-09-11 09:51:14 -07006033 owningPackage = mContext.getOpPackageName();
Dianne Hackbornf265ea92013-01-31 15:00:51 -08006034 }
Amith Yamasanic33cb712010-02-10 15:21:49 -08006035 if (pattern.length == 1) {
6036 // One-shot vibration
John Spurlock7b414672014-07-18 13:02:39 -04006037 mVibrator.vibrate(owningUid, owningPackage, pattern[0], VIBRATION_ATTRIBUTES);
Amith Yamasanic33cb712010-02-10 15:21:49 -08006038 } else {
6039 // Pattern vibration
John Spurlock7b414672014-07-18 13:02:39 -04006040 mVibrator.vibrate(owningUid, owningPackage, pattern, -1, VIBRATION_ATTRIBUTES);
Amith Yamasanic33cb712010-02-10 15:21:49 -08006041 }
6042 return true;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006043 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07006044
6045 @Override
6046 public void keepScreenOnStartedLw() {
Daniel Sandler0601eb72011-04-13 01:01:32 -04006047 }
6048
Jeff Brownc38c9be2012-10-04 13:16:19 -07006049 @Override
6050 public void keepScreenOnStoppedLw() {
Jim Millerab954542014-10-10 18:21:49 -07006051 if (isKeyguardShowingAndNotOccluded()) {
Jim Miller25190572013-02-28 17:36:24 -08006052 mPowerManager.userActivity(SystemClock.uptimeMillis(), false);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006053 }
6054 }
Mike Lockwoodfcb39242009-10-21 23:01:07 -04006055
Dianne Hackborndf89e652011-10-06 22:35:11 -07006056 private int updateSystemUiVisibilityLw() {
Joe Onorato664644d2011-01-23 17:53:23 -08006057 // If there is no window focused, there will be nobody to handle the events
6058 // anyway, so just hang on in whatever state we're in until things settle down.
Adrian Roos53f28ec2014-10-29 17:26:12 +01006059 final WindowState win = mFocusedWindow != null ? mFocusedWindow
6060 : mTopFullscreenOpaqueWindowState;
John Spurlock79da8332013-09-20 12:04:47 -04006061 if (win == null) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07006062 return 0;
6063 }
Jorim Jaggi380ecb82014-03-14 17:25:20 +01006064 if ((win.getAttrs().privateFlags & PRIVATE_FLAG_KEYGUARD) != 0 && mHideLockScreen == true) {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07006065 // We are updating at a point where the keyguard has gotten
6066 // focus, but we were last in a state where the top window is
6067 // hiding it. This is probably because the keyguard as been
6068 // shown while the top window was displayed, so we want to ignore
6069 // it here because this is just a very transient change and it
6070 // will quickly lose focus once it correctly gets hidden.
6071 return 0;
6072 }
John Spurlock32beb2c2013-03-11 10:16:47 -04006073
John Spurlock1db8b682014-02-18 11:18:59 -05006074 int tmpVisibility = PolicyControl.getSystemUiVisibility(win, null)
Dianne Hackborne26ab702011-10-16 13:21:33 -07006075 & ~mResettingSystemUiFlags
6076 & ~mForceClearedSystemUiFlags;
John Spurlock79da8332013-09-20 12:04:47 -04006077 if (mForcingShowNavBar && win.getSurfaceLayer() < mForcingShowNavBarLayer) {
John Spurlockc6d1c602014-01-17 15:22:06 -05006078 tmpVisibility &= ~PolicyControl.adjustClearableFlags(win, View.SYSTEM_UI_CLEARABLE_FLAGS);
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08006079 }
John Spurlock79da8332013-09-20 12:04:47 -04006080 final int visibility = updateSystemBarsLw(win, mLastSystemUiFlags, tmpVisibility);
John Spurlockad3e6cb2013-04-30 08:47:43 -04006081 final int diff = visibility ^ mLastSystemUiFlags;
John Spurlock79da8332013-09-20 12:04:47 -04006082 final boolean needsMenu = win.getNeedsMenuLw(mTopFullscreenOpaqueWindowState);
Dianne Hackborne0f085d2011-11-30 18:41:15 -08006083 if (diff == 0 && mLastFocusNeedsMenu == needsMenu
John Spurlock79da8332013-09-20 12:04:47 -04006084 && mFocusedApp == win.getAppToken()) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07006085 return 0;
6086 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07006087 mLastSystemUiFlags = visibility;
Dianne Hackborn4eff8d32011-11-10 19:38:40 -08006088 mLastFocusNeedsMenu = needsMenu;
John Spurlock79da8332013-09-20 12:04:47 -04006089 mFocusedApp = win.getAppToken();
Dianne Hackborndf89e652011-10-06 22:35:11 -07006090 mHandler.post(new Runnable() {
Craig Mautnereda67292013-04-28 13:50:14 -07006091 @Override
Dianne Hackborndf89e652011-10-06 22:35:11 -07006092 public void run() {
Dianne Hackborn42e620c2012-06-24 13:20:51 -07006093 try {
6094 IStatusBarService statusbar = getStatusBarService();
6095 if (statusbar != null) {
Adrian Roos53f28ec2014-10-29 17:26:12 +01006096 statusbar.setSystemUiVisibility(visibility, 0xffffffff, win.toString());
Dianne Hackborn42e620c2012-06-24 13:20:51 -07006097 statusbar.topAppWindowChanged(needsMenu);
Joe Onorato664644d2011-01-23 17:53:23 -08006098 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07006099 } catch (RemoteException e) {
6100 // re-acquire status bar service next time it is needed.
6101 mStatusBarService = null;
Joe Onorato664644d2011-01-23 17:53:23 -08006102 }
Dianne Hackborndf89e652011-10-06 22:35:11 -07006103 }
6104 });
6105 return diff;
Joe Onorato664644d2011-01-23 17:53:23 -08006106 }
6107
John Spurlock79da8332013-09-20 12:04:47 -04006108 private int updateSystemBarsLw(WindowState win, int oldVis, int vis) {
John Spurlockbd957402013-10-03 11:38:39 -04006109 // apply translucent bar vis flags
Jorim Jaggi380ecb82014-03-14 17:25:20 +01006110 WindowState transWin = isStatusBarKeyguard() && !mHideLockScreen
6111 ? mStatusBar
John Spurlockbd957402013-10-03 11:38:39 -04006112 : mTopFullscreenOpaqueWindowState;
6113 vis = mStatusBarController.applyTranslucentFlagLw(transWin, vis, oldVis);
6114 vis = mNavigationBarController.applyTranslucentFlagLw(transWin, vis, oldVis);
6115
John Spurlock27735a42013-08-14 17:57:38 -04006116 // prevent status bar interaction from clearing certain flags
John Spurlock79da8332013-09-20 12:04:47 -04006117 boolean statusBarHasFocus = win.getAttrs().type == TYPE_STATUS_BAR;
John Spurlock08ffcf52014-07-11 10:13:46 -04006118 if (statusBarHasFocus && !isStatusBarKeyguard()) {
John Spurlockad3e6cb2013-04-30 08:47:43 -04006119 int flags = View.SYSTEM_UI_FLAG_FULLSCREEN
6120 | View.SYSTEM_UI_FLAG_HIDE_NAVIGATION
John Spurlockcfc359a2013-09-05 10:42:03 -04006121 | View.SYSTEM_UI_FLAG_IMMERSIVE
Jorim Jaggi5cf17872014-03-26 18:31:48 +01006122 | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY;
John Spurlock08ffcf52014-07-11 10:13:46 -04006123 if (mHideLockScreen) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01006124 flags |= View.STATUS_BAR_TRANSLUCENT | View.NAVIGATION_BAR_TRANSLUCENT;
6125 }
John Spurlockbd957402013-10-03 11:38:39 -04006126 vis = (vis & ~flags) | (oldVis & flags);
John Spurlockad3e6cb2013-04-30 08:47:43 -04006127 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04006128
Adrian Roos4fb3ee32014-08-22 19:29:09 +02006129 if (!areTranslucentBarsAllowed() && transWin != mStatusBar) {
Adrian Roosea562512014-05-05 13:33:03 +02006130 vis &= ~(View.NAVIGATION_BAR_TRANSLUCENT | View.STATUS_BAR_TRANSLUCENT
6131 | View.SYSTEM_UI_TRANSPARENT);
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006132 }
6133
John Spurlock27735a42013-08-14 17:57:38 -04006134 // update status bar
John Spurlockf1a36642013-10-12 17:50:42 -04006135 boolean immersiveSticky =
6136 (vis & View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY) != 0;
John Spurlock27735a42013-08-14 17:57:38 -04006137 boolean hideStatusBarWM =
John Spurlockbd957402013-10-03 11:38:39 -04006138 mTopFullscreenOpaqueWindowState != null &&
John Spurlockc6d1c602014-01-17 15:22:06 -05006139 (PolicyControl.getWindowFlags(mTopFullscreenOpaqueWindowState, null)
John Spurlock27735a42013-08-14 17:57:38 -04006140 & WindowManager.LayoutParams.FLAG_FULLSCREEN) != 0;
6141 boolean hideStatusBarSysui =
6142 (vis & View.SYSTEM_UI_FLAG_FULLSCREEN) != 0;
John Spurlockf1a36642013-10-12 17:50:42 -04006143 boolean hideNavBarSysui =
6144 (vis & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) != 0;
John Spurlockad3e6cb2013-04-30 08:47:43 -04006145
John Spurlock27735a42013-08-14 17:57:38 -04006146 boolean transientStatusBarAllowed =
6147 mStatusBar != null && (
6148 hideStatusBarWM
John Spurlockf1a36642013-10-12 17:50:42 -04006149 || (hideStatusBarSysui && immersiveSticky)
John Spurlock27735a42013-08-14 17:57:38 -04006150 || statusBarHasFocus);
6151
John Spurlockf1a36642013-10-12 17:50:42 -04006152 boolean transientNavBarAllowed =
6153 mNavigationBar != null &&
6154 hideNavBarSysui && immersiveSticky;
6155
John Spurlockf25706f2013-11-07 18:02:43 -05006156 boolean denyTransientStatus = mStatusBarController.isTransientShowRequested()
John Spurlockf1a36642013-10-12 17:50:42 -04006157 && !transientStatusBarAllowed && hideStatusBarSysui;
John Spurlockf25706f2013-11-07 18:02:43 -05006158 boolean denyTransientNav = mNavigationBarController.isTransientShowRequested()
John Spurlockf1a36642013-10-12 17:50:42 -04006159 && !transientNavBarAllowed;
6160 if (denyTransientStatus || denyTransientNav) {
John Spurlock27735a42013-08-14 17:57:38 -04006161 // clear the clearable flags instead
John Spurlockf1a36642013-10-12 17:50:42 -04006162 clearClearableFlagsLw();
tiger_huangc58d7562014-10-23 20:24:19 +08006163 vis &= ~View.SYSTEM_UI_CLEARABLE_FLAGS;
John Spurlockad3e6cb2013-04-30 08:47:43 -04006164 }
John Spurlock27735a42013-08-14 17:57:38 -04006165
6166 vis = mStatusBarController.updateVisibilityLw(transientStatusBarAllowed, oldVis, vis);
6167
6168 // update navigation bar
John Spurlockf1a36642013-10-12 17:50:42 -04006169 boolean oldImmersiveMode = isImmersiveMode(oldVis);
6170 boolean newImmersiveMode = isImmersiveMode(vis);
6171 if (win != null && oldImmersiveMode != newImmersiveMode) {
John Spurlock79da8332013-09-20 12:04:47 -04006172 final String pkg = win.getOwningPackage();
Maurice Lam99c6e072014-04-28 18:24:28 -07006173 mImmersiveModeConfirmation.immersiveModeChanged(pkg, newImmersiveMode,
6174 isUserSetupComplete());
John Spurlock34e13d92013-08-10 06:52:28 -04006175 }
John Spurlock27735a42013-08-14 17:57:38 -04006176
John Spurlockf1a36642013-10-12 17:50:42 -04006177 vis = mNavigationBarController.updateVisibilityLw(transientNavBarAllowed, oldVis, vis);
6178
John Spurlocke1f366f2013-08-05 12:22:40 -04006179 return vis;
John Spurlockad3e6cb2013-04-30 08:47:43 -04006180 }
6181
John Spurlockf1a36642013-10-12 17:50:42 -04006182 private void clearClearableFlagsLw() {
6183 int newVal = mResettingSystemUiFlags | View.SYSTEM_UI_CLEARABLE_FLAGS;
6184 if (newVal != mResettingSystemUiFlags) {
6185 mResettingSystemUiFlags = newVal;
6186 mWindowManagerFuncs.reevaluateStatusBarVisibility();
6187 }
6188 }
6189
6190 private boolean isImmersiveMode(int vis) {
6191 final int flags = View.SYSTEM_UI_FLAG_IMMERSIVE | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY;
John Spurlock34e13d92013-08-10 06:52:28 -04006192 return mNavigationBar != null
6193 && (vis & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) != 0
Daniel Sandler900ece52013-10-18 15:53:27 -04006194 && (vis & flags) != 0
6195 && canHideNavigationBar();
John Spurlock34e13d92013-08-10 06:52:28 -04006196 }
6197
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006198 /**
Daniel Sandlerdd73ee42013-10-11 22:19:59 -04006199 * @return whether the navigation or status bar can be made translucent
6200 *
6201 * This should return true unless touch exploration is not enabled or
6202 * R.boolean.config_enableTranslucentDecor is false.
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006203 */
Daniel Sandlerdd73ee42013-10-11 22:19:59 -04006204 private boolean areTranslucentBarsAllowed() {
Svetoslav8e3feb12014-02-24 13:46:47 -08006205 return mTranslucentDecorEnabled
6206 && !mAccessibilityManager.isTouchExplorationEnabled();
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006207 }
6208
Daniel Sandler0c4ccff2011-10-19 16:39:14 -04006209 // Use this instead of checking config_showNavigationBar so that it can be consistently
6210 // overridden by qemu.hw.mainkeys in the emulator.
Craig Mautnereda67292013-04-28 13:50:14 -07006211 @Override
Daniel Sandler0c4ccff2011-10-19 16:39:14 -04006212 public boolean hasNavigationBar() {
6213 return mHasNavigationBar;
6214 }
6215
satok1bc0a492012-04-25 22:47:12 +09006216 @Override
6217 public void setLastInputMethodWindowLw(WindowState ime, WindowState target) {
6218 mLastInputMethodWindow = ime;
6219 mLastInputMethodTargetWindow = target;
6220 }
6221
Craig Mautnerf1b67412012-09-19 13:18:29 -07006222 @Override
Satoshi Kataoka658c7b82013-10-10 17:03:51 +09006223 public int getInputMethodWindowVisibleHeightLw() {
6224 return mDockBottom - mCurBottom;
6225 }
6226
6227 @Override
Craig Mautnerf1b67412012-09-19 13:18:29 -07006228 public void setCurrentUserLw(int newUserId) {
Craig Mautnerd625ab22013-09-06 13:40:31 -07006229 mCurrentUserId = newUserId;
Jim Miller5ecd8112013-01-09 18:50:26 -08006230 if (mKeyguardDelegate != null) {
6231 mKeyguardDelegate.setCurrentUser(newUserId);
Craig Mautnerf1b67412012-09-19 13:18:29 -07006232 }
John Spurlock13451a22012-09-28 14:40:41 -04006233 if (mStatusBarService != null) {
6234 try {
6235 mStatusBarService.setCurrentUser(newUserId);
6236 } catch (RemoteException e) {
6237 // oh well
6238 }
6239 }
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07006240 setLastInputMethodWindowLw(null, null);
Craig Mautnerf1b67412012-09-19 13:18:29 -07006241 }
6242
6243 @Override
Svetoslav Ganov545252f2012-12-10 18:29:24 -08006244 public boolean canMagnifyWindow(int windowType) {
6245 switch (windowType) {
6246 case WindowManager.LayoutParams.TYPE_INPUT_METHOD:
6247 case WindowManager.LayoutParams.TYPE_INPUT_METHOD_DIALOG:
6248 case WindowManager.LayoutParams.TYPE_NAVIGATION_BAR:
6249 case WindowManager.LayoutParams.TYPE_MAGNIFICATION_OVERLAY: {
6250 return false;
6251 }
6252 }
6253 return true;
6254 }
6255
6256 @Override
6257 public boolean isTopLevelWindow(int windowType) {
6258 if (windowType >= WindowManager.LayoutParams.FIRST_SUB_WINDOW
6259 && windowType <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
6260 return (windowType == WindowManager.LayoutParams.TYPE_APPLICATION_ATTACHED_DIALOG);
6261 }
6262 return true;
6263 }
6264
Jim Miller4eeb4f62012-11-08 00:04:29 -08006265 @Override
Jeff Brownd7a04de2012-06-17 14:17:52 -07006266 public void dump(String prefix, PrintWriter pw, String[] args) {
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006267 pw.print(prefix); pw.print("mSafeMode="); pw.print(mSafeMode);
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006268 pw.print(" mSystemReady="); pw.print(mSystemReady);
6269 pw.print(" mSystemBooted="); pw.println(mSystemBooted);
Jeff Brown2e7760e2012-04-11 15:14:55 -07006270 pw.print(prefix); pw.print("mLidState="); pw.print(mLidState);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006271 pw.print(" mLidOpenRotation="); pw.print(mLidOpenRotation);
Michael Wright3818c922014-09-02 13:59:07 -07006272 pw.print(" mCameraLensCoverState="); pw.print(mCameraLensCoverState);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006273 pw.print(" mHdmiPlugged="); pw.println(mHdmiPlugged);
Dianne Hackborne26ab702011-10-16 13:21:33 -07006274 if (mLastSystemUiFlags != 0 || mResettingSystemUiFlags != 0
6275 || mForceClearedSystemUiFlags != 0) {
6276 pw.print(prefix); pw.print("mLastSystemUiFlags=0x");
6277 pw.print(Integer.toHexString(mLastSystemUiFlags));
6278 pw.print(" mResettingSystemUiFlags=0x");
6279 pw.print(Integer.toHexString(mResettingSystemUiFlags));
6280 pw.print(" mForceClearedSystemUiFlags=0x");
6281 pw.println(Integer.toHexString(mForceClearedSystemUiFlags));
Dianne Hackborndf89e652011-10-06 22:35:11 -07006282 }
Dianne Hackborn4eff8d32011-11-10 19:38:40 -08006283 if (mLastFocusNeedsMenu) {
6284 pw.print(prefix); pw.print("mLastFocusNeedsMenu=");
6285 pw.println(mLastFocusNeedsMenu);
6286 }
Jeff Browna20dda42014-05-27 20:57:24 -07006287 pw.print(prefix); pw.print("mWakeGestureEnabledSetting=");
6288 pw.println(mWakeGestureEnabledSetting);
6289
Jeff Brownbcdfc622014-03-06 19:13:04 -08006290 pw.print(prefix); pw.print("mSupportAutoRotation="); pw.println(mSupportAutoRotation);
Daniel Sandler6396c722013-04-16 20:19:09 -04006291 pw.print(prefix); pw.print("mUiMode="); pw.print(mUiMode);
6292 pw.print(" mDockMode="); pw.print(mDockMode);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006293 pw.print(" mCarDockRotation="); pw.print(mCarDockRotation);
6294 pw.print(" mDeskDockRotation="); pw.println(mDeskDockRotation);
6295 pw.print(prefix); pw.print("mUserRotationMode="); pw.print(mUserRotationMode);
6296 pw.print(" mUserRotation="); pw.print(mUserRotation);
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05006297 pw.print(" mAllowAllRotations="); pw.println(mAllowAllRotations);
Dianne Hackborn6e2281d2012-06-19 17:48:32 -07006298 pw.print(prefix); pw.print("mCurrentAppOrientation="); pw.println(mCurrentAppOrientation);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006299 pw.print(prefix); pw.print("mCarDockEnablesAccelerometer=");
6300 pw.print(mCarDockEnablesAccelerometer);
6301 pw.print(" mDeskDockEnablesAccelerometer=");
6302 pw.println(mDeskDockEnablesAccelerometer);
6303 pw.print(prefix); pw.print("mLidKeyboardAccessibility=");
6304 pw.print(mLidKeyboardAccessibility);
6305 pw.print(" mLidNavigationAccessibility="); pw.print(mLidNavigationAccessibility);
Dianne Hackborn6e2281d2012-06-19 17:48:32 -07006306 pw.print(" mLidControlsSleep="); pw.println(mLidControlsSleep);
Jeff Brown6d8fd272014-05-20 21:24:38 -07006307 pw.print(prefix);
6308 pw.print("mShortPressOnPowerBehavior="); pw.print(mShortPressOnPowerBehavior);
6309 pw.print(" mLongPressOnPowerBehavior="); pw.println(mLongPressOnPowerBehavior);
Jeff Brown13f00f02014-10-31 14:45:50 -07006310 pw.print(prefix);
6311 pw.print("mDoublePressOnPowerBehavior="); pw.print(mDoublePressOnPowerBehavior);
6312 pw.print(" mTriplePressOnPowerBehavior="); pw.println(mTriplePressOnPowerBehavior);
Jeff Brown6d8fd272014-05-20 21:24:38 -07006313 pw.print(prefix); pw.print("mHasSoftInput="); pw.println(mHasSoftInput);
Jeff Brown3ee549c2014-09-22 20:14:39 -07006314 pw.print(prefix); pw.print("mAwake="); pw.println(mAwake);
6315 pw.print(prefix); pw.print("mScreenOnEarly="); pw.print(mScreenOnEarly);
6316 pw.print(" mScreenOnFully="); pw.println(mScreenOnFully);
6317 pw.print(prefix); pw.print("mKeyguardDrawComplete="); pw.print(mKeyguardDrawComplete);
6318 pw.print(" mWindowManagerDrawComplete="); pw.println(mWindowManagerDrawComplete);
6319 pw.print(prefix); pw.print("mOrientationSensorEnabled=");
6320 pw.println(mOrientationSensorEnabled);
Dianne Hackbornc652de82013-02-15 16:32:56 -08006321 pw.print(prefix); pw.print("mOverscanScreen=("); pw.print(mOverscanScreenLeft);
6322 pw.print(","); pw.print(mOverscanScreenTop);
6323 pw.print(") "); pw.print(mOverscanScreenWidth);
6324 pw.print("x"); pw.println(mOverscanScreenHeight);
6325 if (mOverscanLeft != 0 || mOverscanTop != 0
6326 || mOverscanRight != 0 || mOverscanBottom != 0) {
6327 pw.print(prefix); pw.print("mOverscan left="); pw.print(mOverscanLeft);
6328 pw.print(" top="); pw.print(mOverscanTop);
6329 pw.print(" right="); pw.print(mOverscanRight);
6330 pw.print(" bottom="); pw.println(mOverscanBottom);
6331 }
Dianne Hackborn313440842013-02-19 19:22:59 -08006332 pw.print(prefix); pw.print("mRestrictedOverscanScreen=(");
6333 pw.print(mRestrictedOverscanScreenLeft);
6334 pw.print(","); pw.print(mRestrictedOverscanScreenTop);
6335 pw.print(") "); pw.print(mRestrictedOverscanScreenWidth);
6336 pw.print("x"); pw.println(mRestrictedOverscanScreenHeight);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006337 pw.print(prefix); pw.print("mUnrestrictedScreen=("); pw.print(mUnrestrictedScreenLeft);
6338 pw.print(","); pw.print(mUnrestrictedScreenTop);
6339 pw.print(") "); pw.print(mUnrestrictedScreenWidth);
6340 pw.print("x"); pw.println(mUnrestrictedScreenHeight);
6341 pw.print(prefix); pw.print("mRestrictedScreen=("); pw.print(mRestrictedScreenLeft);
6342 pw.print(","); pw.print(mRestrictedScreenTop);
6343 pw.print(") "); pw.print(mRestrictedScreenWidth);
6344 pw.print("x"); pw.println(mRestrictedScreenHeight);
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07006345 pw.print(prefix); pw.print("mStableFullscreen=("); pw.print(mStableFullscreenLeft);
6346 pw.print(","); pw.print(mStableFullscreenTop);
6347 pw.print(")-("); pw.print(mStableFullscreenRight);
6348 pw.print(","); pw.print(mStableFullscreenBottom); pw.println(")");
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07006349 pw.print(prefix); pw.print("mStable=("); pw.print(mStableLeft);
6350 pw.print(","); pw.print(mStableTop);
6351 pw.print(")-("); pw.print(mStableRight);
6352 pw.print(","); pw.print(mStableBottom); pw.println(")");
Dianne Hackborn5c58de32012-04-28 19:52:37 -07006353 pw.print(prefix); pw.print("mSystem=("); pw.print(mSystemLeft);
6354 pw.print(","); pw.print(mSystemTop);
6355 pw.print(")-("); pw.print(mSystemRight);
6356 pw.print(","); pw.print(mSystemBottom); pw.println(")");
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006357 pw.print(prefix); pw.print("mCur=("); pw.print(mCurLeft);
6358 pw.print(","); pw.print(mCurTop);
6359 pw.print(")-("); pw.print(mCurRight);
6360 pw.print(","); pw.print(mCurBottom); pw.println(")");
6361 pw.print(prefix); pw.print("mContent=("); pw.print(mContentLeft);
6362 pw.print(","); pw.print(mContentTop);
6363 pw.print(")-("); pw.print(mContentRight);
6364 pw.print(","); pw.print(mContentBottom); pw.println(")");
Dianne Hackborne30e02f2014-05-27 18:24:45 -07006365 pw.print(prefix); pw.print("mVoiceContent=("); pw.print(mVoiceContentLeft);
6366 pw.print(","); pw.print(mVoiceContentTop);
6367 pw.print(")-("); pw.print(mVoiceContentRight);
6368 pw.print(","); pw.print(mVoiceContentBottom); pw.println(")");
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006369 pw.print(prefix); pw.print("mDock=("); pw.print(mDockLeft);
6370 pw.print(","); pw.print(mDockTop);
6371 pw.print(")-("); pw.print(mDockRight);
6372 pw.print(","); pw.print(mDockBottom); pw.println(")");
Dianne Hackborn5c58de32012-04-28 19:52:37 -07006373 pw.print(prefix); pw.print("mDockLayer="); pw.print(mDockLayer);
6374 pw.print(" mStatusBarLayer="); pw.println(mStatusBarLayer);
Dianne Hackborn7ad44382012-10-18 17:46:00 -07006375 pw.print(prefix); pw.print("mShowingLockscreen="); pw.print(mShowingLockscreen);
6376 pw.print(" mShowingDream="); pw.print(mShowingDream);
6377 pw.print(" mDreamingLockscreen="); pw.println(mDreamingLockscreen);
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07006378 if (mLastInputMethodWindow != null) {
6379 pw.print(prefix); pw.print("mLastInputMethodWindow=");
6380 pw.println(mLastInputMethodWindow);
6381 }
6382 if (mLastInputMethodTargetWindow != null) {
6383 pw.print(prefix); pw.print("mLastInputMethodTargetWindow=");
6384 pw.println(mLastInputMethodTargetWindow);
6385 }
6386 if (mStatusBar != null) {
6387 pw.print(prefix); pw.print("mStatusBar=");
6388 pw.println(mStatusBar);
Jorim Jaggi380ecb82014-03-14 17:25:20 +01006389 pw.print(prefix); pw.print("isStatusBarKeyguard=");
6390 pw.print(isStatusBarKeyguard());
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07006391 }
6392 if (mNavigationBar != null) {
6393 pw.print(prefix); pw.print("mNavigationBar=");
6394 pw.println(mNavigationBar);
6395 }
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07006396 if (mFocusedWindow != null) {
6397 pw.print(prefix); pw.print("mFocusedWindow=");
6398 pw.println(mFocusedWindow);
6399 }
6400 if (mFocusedApp != null) {
6401 pw.print(prefix); pw.print("mFocusedApp=");
6402 pw.println(mFocusedApp);
6403 }
6404 if (mWinDismissingKeyguard != null) {
6405 pw.print(prefix); pw.print("mWinDismissingKeyguard=");
6406 pw.println(mWinDismissingKeyguard);
6407 }
6408 if (mTopFullscreenOpaqueWindowState != null) {
6409 pw.print(prefix); pw.print("mTopFullscreenOpaqueWindowState=");
6410 pw.println(mTopFullscreenOpaqueWindowState);
6411 }
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08006412 if (mForcingShowNavBar) {
6413 pw.print(prefix); pw.print("mForcingShowNavBar=");
6414 pw.println(mForcingShowNavBar); pw.print( "mForcingShowNavBarLayer=");
6415 pw.println(mForcingShowNavBarLayer);
6416 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07006417 pw.print(prefix); pw.print("mTopIsFullscreen="); pw.print(mTopIsFullscreen);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006418 pw.print(" mHideLockScreen="); pw.println(mHideLockScreen);
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07006419 pw.print(prefix); pw.print("mForceStatusBar="); pw.print(mForceStatusBar);
6420 pw.print(" mForceStatusBarFromKeyguard=");
6421 pw.println(mForceStatusBarFromKeyguard);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006422 pw.print(prefix); pw.print("mDismissKeyguard="); pw.print(mDismissKeyguard);
Craig Mautnerad09bcc2012-10-08 13:33:11 -07006423 pw.print(" mWinDismissingKeyguard="); pw.print(mWinDismissingKeyguard);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006424 pw.print(" mHomePressed="); pw.println(mHomePressed);
6425 pw.print(prefix); pw.print("mAllowLockscreenWhenOn="); pw.print(mAllowLockscreenWhenOn);
6426 pw.print(" mLockScreenTimeout="); pw.print(mLockScreenTimeout);
6427 pw.print(" mLockScreenTimerActive="); pw.println(mLockScreenTimerActive);
6428 pw.print(prefix); pw.print("mEndcallBehavior="); pw.print(mEndcallBehavior);
6429 pw.print(" mIncallPowerBehavior="); pw.print(mIncallPowerBehavior);
6430 pw.print(" mLongPressOnHomeBehavior="); pw.println(mLongPressOnHomeBehavior);
6431 pw.print(prefix); pw.print("mLandscapeRotation="); pw.print(mLandscapeRotation);
6432 pw.print(" mSeascapeRotation="); pw.println(mSeascapeRotation);
6433 pw.print(prefix); pw.print("mPortraitRotation="); pw.print(mPortraitRotation);
6434 pw.print(" mUpsideDownRotation="); pw.println(mUpsideDownRotation);
Jeff Brownc82c89ed2013-04-17 17:18:15 -07006435 pw.print(prefix); pw.print("mDemoHdmiRotation="); pw.print(mDemoHdmiRotation);
6436 pw.print(" mDemoHdmiRotationLock="); pw.println(mDemoHdmiRotationLock);
6437 pw.print(prefix); pw.print("mUndockedHdmiRotation="); pw.println(mUndockedHdmiRotation);
Jeff Brown600f0032014-05-22 17:06:00 -07006438
Tim Kilbournd7c0c2e2014-05-29 16:08:10 -07006439 mGlobalKeyManager.dump(prefix, pw);
John Spurlock27735a42013-08-14 17:57:38 -04006440 mStatusBarController.dump(pw, prefix);
6441 mNavigationBarController.dump(pw, prefix);
John Spurlockc6d1c602014-01-17 15:22:06 -05006442 PolicyControl.dump(prefix, pw);
Jeff Brown600f0032014-05-22 17:06:00 -07006443
Jeff Browna20dda42014-05-27 20:57:24 -07006444 if (mWakeGestureListener != null) {
6445 mWakeGestureListener.dump(pw, prefix);
6446 }
Jeff Brown600f0032014-05-22 17:06:00 -07006447 if (mOrientationListener != null) {
6448 mOrientationListener.dump(pw, prefix);
6449 }
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006450 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006451}