blob: ec8a77513c0077410f594a96cc5cc0b995659a50 [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();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001198 mShortcutManager = new ShortcutManager(context, mHandler);
1199 mShortcutManager.observe();
Daniel Sandler6396c722013-04-16 20:19:09 -04001200 mUiMode = context.getResources().getInteger(
1201 com.android.internal.R.integer.config_defaultUiModeType);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001202 mHomeIntent = new Intent(Intent.ACTION_MAIN, null);
1203 mHomeIntent.addCategory(Intent.CATEGORY_HOME);
1204 mHomeIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1205 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
Dianne Hackborn39c2d712009-09-22 11:41:31 -07001206 mCarDockIntent = new Intent(Intent.ACTION_MAIN, null);
1207 mCarDockIntent.addCategory(Intent.CATEGORY_CAR_DOCK);
1208 mCarDockIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1209 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
1210 mDeskDockIntent = new Intent(Intent.ACTION_MAIN, null);
1211 mDeskDockIntent.addCategory(Intent.CATEGORY_DESK_DOCK);
1212 mDeskDockIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1213 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
Jim Millere6ad1a82010-08-20 19:25:39 -07001214
Jeff Brown96307042012-07-27 15:51:34 -07001215 mPowerManager = (PowerManager)context.getSystemService(Context.POWER_SERVICE);
1216 mBroadcastWakeLock = mPowerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK,
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001217 "PhoneWindowManager.mBroadcastWakeLock");
Jeff Brown13f00f02014-10-31 14:45:50 -07001218 mPowerKeyWakeLock = mPowerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK,
1219 "PhoneWindowManager.mPowerKeyWakeLock");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001220 mEnableShiftMenuBugReports = "1".equals(SystemProperties.get("ro.debuggable"));
Jeff Brownbcdfc622014-03-06 19:13:04 -08001221 mSupportAutoRotation = mContext.getResources().getBoolean(
1222 com.android.internal.R.bool.config_supportAutoRotation);
Dianne Hackborn2862fff2009-09-15 22:56:29 -07001223 mLidOpenRotation = readRotation(
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001224 com.android.internal.R.integer.config_lidOpenRotation);
1225 mCarDockRotation = readRotation(
1226 com.android.internal.R.integer.config_carDockRotation);
1227 mDeskDockRotation = readRotation(
1228 com.android.internal.R.integer.config_deskDockRotation);
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001229 mUndockedHdmiRotation = readRotation(
1230 com.android.internal.R.integer.config_undockedHdmiRotation);
Mike Lockwoode9867d22009-09-20 01:59:02 -04001231 mCarDockEnablesAccelerometer = mContext.getResources().getBoolean(
1232 com.android.internal.R.bool.config_carDockEnablesAccelerometer);
1233 mDeskDockEnablesAccelerometer = mContext.getResources().getBoolean(
1234 com.android.internal.R.bool.config_deskDockEnablesAccelerometer);
Dianne Hackborn2862fff2009-09-15 22:56:29 -07001235 mLidKeyboardAccessibility = mContext.getResources().getInteger(
1236 com.android.internal.R.integer.config_lidKeyboardAccessibility);
1237 mLidNavigationAccessibility = mContext.getResources().getInteger(
1238 com.android.internal.R.integer.config_lidNavigationAccessibility);
Jeff Brownc458ce92012-04-30 14:58:40 -07001239 mLidControlsSleep = mContext.getResources().getBoolean(
1240 com.android.internal.R.bool.config_lidControlsSleep);
Daniel Sandlerdd73ee42013-10-11 22:19:59 -04001241 mTranslucentDecorEnabled = mContext.getResources().getBoolean(
1242 com.android.internal.R.bool.config_enableTranslucentDecor);
Bryce Lee584a4452014-10-21 15:55:55 -07001243
1244 mAllowTheaterModeWakeFromKey = mContext.getResources().getBoolean(
1245 com.android.internal.R.bool.config_allowTheaterModeWakeFromKey);
1246 mAllowTheaterModeWakeFromPowerKey = mAllowTheaterModeWakeFromKey
1247 || mContext.getResources().getBoolean(
1248 com.android.internal.R.bool.config_allowTheaterModeWakeFromPowerKey);
1249 mAllowTheaterModeWakeFromMotion = mContext.getResources().getBoolean(
1250 com.android.internal.R.bool.config_allowTheaterModeWakeFromMotion);
Bryce Lee812d7022014-11-10 13:33:28 -08001251 mAllowTheaterModeWakeFromMotionWhenNotDreaming = mContext.getResources().getBoolean(
1252 com.android.internal.R.bool.config_allowTheaterModeWakeFromMotionWhenNotDreaming);
Bryce Lee584a4452014-10-21 15:55:55 -07001253 mAllowTheaterModeWakeFromCameraLens = mContext.getResources().getBoolean(
1254 com.android.internal.R.bool.config_allowTheaterModeWakeFromCameraLens);
1255 mAllowTheaterModeWakeFromLidSwitch = mContext.getResources().getBoolean(
1256 com.android.internal.R.bool.config_allowTheaterModeWakeFromLidSwitch);
1257 mAllowTheaterModeWakeFromWakeGesture = mContext.getResources().getBoolean(
1258 com.android.internal.R.bool.config_allowTheaterModeWakeFromGesture);
1259
Bryce Lee55e846d2014-11-04 12:43:44 -08001260 mGoToSleepOnButtonPressTheaterMode = mContext.getResources().getBoolean(
1261 com.android.internal.R.bool.config_goToSleepOnButtonPressTheaterMode);
1262
Jeff Brown13f00f02014-10-31 14:45:50 -07001263 mShortPressOnPowerBehavior = mContext.getResources().getInteger(
1264 com.android.internal.R.integer.config_shortPressOnPowerBehavior);
1265 mLongPressOnPowerBehavior = mContext.getResources().getInteger(
1266 com.android.internal.R.integer.config_longPressOnPowerBehavior);
1267 mDoublePressOnPowerBehavior = mContext.getResources().getInteger(
1268 com.android.internal.R.integer.config_doublePressOnPowerBehavior);
1269 mTriplePressOnPowerBehavior = mContext.getResources().getInteger(
1270 com.android.internal.R.integer.config_triplePressOnPowerBehavior);
1271
John Spurlock61560172015-02-06 19:46:04 -05001272 mUseTvRouting = AudioSystem.getPlatformType(mContext) == AudioSystem.PLATFORM_TELEVISION;
RoboErik001c59c2015-01-26 15:53:51 -08001273 mUseMasterVolume = mContext.getResources().getBoolean(
1274 com.android.internal.R.bool.config_useMasterVolume);
1275
Jeff Brownf71343d2013-05-31 17:59:11 -07001276 readConfigurationDependentBehaviors();
Jeff Browncaca8812013-05-09 13:34:33 -07001277
Svetoslav8e3feb12014-02-24 13:46:47 -08001278 mAccessibilityManager = (AccessibilityManager) context.getSystemService(
1279 Context.ACCESSIBILITY_SERVICE);
1280
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001281 // register for dock events
Dianne Hackborn78968392010-03-04 20:47:56 -08001282 IntentFilter filter = new IntentFilter();
1283 filter.addAction(UiModeManager.ACTION_ENTER_CAR_MODE);
1284 filter.addAction(UiModeManager.ACTION_EXIT_CAR_MODE);
1285 filter.addAction(UiModeManager.ACTION_ENTER_DESK_MODE);
1286 filter.addAction(UiModeManager.ACTION_EXIT_DESK_MODE);
Dianne Hackborn867ab6472010-04-29 13:28:56 -07001287 filter.addAction(Intent.ACTION_DOCK_EVENT);
1288 Intent intent = context.registerReceiver(mDockReceiver, filter);
1289 if (intent != null) {
1290 // Retrieve current sticky dock event broadcast.
1291 mDockMode = intent.getIntExtra(Intent.EXTRA_DOCK_STATE,
1292 Intent.EXTRA_DOCK_STATE_UNDOCKED);
1293 }
Daniel Sandler7e37df52011-11-16 22:08:23 -08001294
Jeff Brown6aaf2952012-10-05 16:01:08 -07001295 // register for dream-related broadcasts
1296 filter = new IntentFilter();
1297 filter.addAction(Intent.ACTION_DREAMING_STARTED);
1298 filter.addAction(Intent.ACTION_DREAMING_STOPPED);
1299 context.registerReceiver(mDreamReceiver, filter);
1300
Christopher Tate5e08af02012-09-21 17:17:22 -07001301 // register for multiuser-relevant broadcasts
1302 filter = new IntentFilter(Intent.ACTION_USER_SWITCHED);
1303 context.registerReceiver(mMultiuserReceiver, filter);
1304
John Spurlock57306e62013-04-22 09:48:49 -04001305 // monitor for system gestures
Craig Mautner037aa8d2013-06-07 10:35:44 -07001306 mSystemGestures = new SystemGesturesPointerEventListener(context,
1307 new SystemGesturesPointerEventListener.Callbacks() {
John Spurlock57306e62013-04-22 09:48:49 -04001308 @Override
1309 public void onSwipeFromTop() {
John Spurlock04db1762013-05-13 12:46:41 -04001310 if (mStatusBar != null) {
John Spurlocke1f366f2013-08-05 12:22:40 -04001311 requestTransientBars(mStatusBar);
John Spurlock04db1762013-05-13 12:46:41 -04001312 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04001313 }
1314 @Override
1315 public void onSwipeFromBottom() {
John Spurlock04db1762013-05-13 12:46:41 -04001316 if (mNavigationBar != null && mNavigationBarOnBottom) {
John Spurlocke1f366f2013-08-05 12:22:40 -04001317 requestTransientBars(mNavigationBar);
John Spurlockad3e6cb2013-04-30 08:47:43 -04001318 }
1319 }
1320 @Override
1321 public void onSwipeFromRight() {
John Spurlock04db1762013-05-13 12:46:41 -04001322 if (mNavigationBar != null && !mNavigationBarOnBottom) {
John Spurlocke1f366f2013-08-05 12:22:40 -04001323 requestTransientBars(mNavigationBar);
John Spurlockad3e6cb2013-04-30 08:47:43 -04001324 }
1325 }
1326 @Override
1327 public void onDebug() {
John Spurlockd67ec252013-09-05 11:31:54 -04001328 // no-op
John Spurlockad3e6cb2013-04-30 08:47:43 -04001329 }
1330 });
John Spurlockf1a36642013-10-12 17:50:42 -04001331 mImmersiveModeConfirmation = new ImmersiveModeConfirmation(mContext);
Craig Mautner037aa8d2013-06-07 10:35:44 -07001332 mWindowManagerFuncs.registerPointerEventListener(mSystemGestures);
John Spurlock32beb2c2013-03-11 10:16:47 -04001333
Jeff Brownc2346132012-04-13 01:55:38 -07001334 mVibrator = (Vibrator)context.getSystemService(Context.VIBRATOR_SERVICE);
Dianne Hackbornb1a79802009-09-29 15:18:31 -07001335 mLongPressVibePattern = getLongIntArray(mContext.getResources(),
1336 com.android.internal.R.array.config_longPressVibePattern);
1337 mVirtualKeyVibePattern = getLongIntArray(mContext.getResources(),
1338 com.android.internal.R.array.config_virtualKeyVibePattern);
Amith Yamasanic33cb712010-02-10 15:21:49 -08001339 mKeyboardTapVibePattern = getLongIntArray(mContext.getResources(),
1340 com.android.internal.R.array.config_keyboardTapVibePattern);
Fabrice Di Meglioeeff63a2013-08-05 12:07:24 -07001341 mClockTickVibePattern = getLongIntArray(mContext.getResources(),
1342 com.android.internal.R.array.config_clockTickVibePattern);
Fabrice Di Megliobd9152f2013-10-01 11:21:31 -07001343 mCalendarDateVibePattern = getLongIntArray(mContext.getResources(),
1344 com.android.internal.R.array.config_calendarDateVibePattern);
Dianne Hackbornb1a79802009-09-29 15:18:31 -07001345 mSafeModeDisabledVibePattern = getLongIntArray(mContext.getResources(),
1346 com.android.internal.R.array.config_safeModeDisabledVibePattern);
1347 mSafeModeEnabledVibePattern = getLongIntArray(mContext.getResources(),
1348 com.android.internal.R.array.config_safeModeEnabledVibePattern);
Daniel Sandler40427442010-07-16 11:44:52 -04001349
Christopher Tatee90585f2012-03-05 18:56:25 -08001350 mScreenshotChordEnabled = mContext.getResources().getBoolean(
1351 com.android.internal.R.bool.config_enableScreenshotChord);
1352
Justin Kohd378ad72013-04-01 12:18:26 -07001353 mGlobalKeyManager = new GlobalKeyManager(mContext);
1354
Joe Onoratoea495d42011-04-06 11:41:11 -07001355 // Controls rotation and the like.
1356 initializeHdmiState();
Dianne Hackborn40011092011-09-22 13:37:48 -07001357
1358 // Match current screen state.
Craig Mautnera631d492014-08-05 15:16:01 -07001359 if (!mPowerManager.isInteractive()) {
Jeff Brown140ffc72014-05-01 15:18:00 -07001360 goingToSleep(WindowManagerPolicy.OFF_BECAUSE_OF_USER);
Dianne Hackborn40011092011-09-22 13:37:48 -07001361 }
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001362 }
1363
Jeff Brownf71343d2013-05-31 17:59:11 -07001364 /**
1365 * Read values from config.xml that may be overridden depending on
1366 * the configuration of the device.
1367 * eg. Disable long press on home goes to recents on sw600dp.
1368 */
1369 private void readConfigurationDependentBehaviors() {
1370 mLongPressOnHomeBehavior = mContext.getResources().getInteger(
1371 com.android.internal.R.integer.config_longPressOnHomeBehavior);
1372 if (mLongPressOnHomeBehavior < LONG_PRESS_HOME_NOTHING ||
1373 mLongPressOnHomeBehavior > LONG_PRESS_HOME_ASSIST) {
1374 mLongPressOnHomeBehavior = LONG_PRESS_HOME_NOTHING;
1375 }
1376
1377 mDoubleTapOnHomeBehavior = mContext.getResources().getInteger(
1378 com.android.internal.R.integer.config_doubleTapOnHomeBehavior);
1379 if (mDoubleTapOnHomeBehavior < DOUBLE_TAP_HOME_NOTHING ||
1380 mDoubleTapOnHomeBehavior > DOUBLE_TAP_HOME_RECENT_SYSTEM_UI) {
1381 mDoubleTapOnHomeBehavior = LONG_PRESS_HOME_NOTHING;
1382 }
1383 }
1384
Craig Mautner0bf6ec92012-12-18 08:33:27 -08001385 @Override
Dianne Hackborndde331c2012-08-03 14:01:57 -07001386 public void setInitialDisplaySize(Display display, int width, int height, int density) {
Jeff Brownef981a42013-08-07 14:13:37 -07001387 // This method might be called before the policy has been fully initialized
1388 // or for other displays we don't care about.
1389 if (mContext == null || display.getDisplayId() != Display.DEFAULT_DISPLAY) {
1390 return;
Dianne Hackbornc652de82013-02-15 16:32:56 -08001391 }
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001392 mDisplay = display;
1393
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001394 final Resources res = mContext.getResources();
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001395 int shortSize, longSize;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001396 if (width > height) {
Dianne Hackborn81e56d52011-05-26 00:55:58 -07001397 shortSize = height;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001398 longSize = width;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001399 mLandscapeRotation = Surface.ROTATION_0;
1400 mSeascapeRotation = Surface.ROTATION_180;
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001401 if (res.getBoolean(com.android.internal.R.bool.config_reverseDefaultRotation)) {
Dianne Hackborn9d132642011-04-21 17:26:39 -07001402 mPortraitRotation = Surface.ROTATION_90;
1403 mUpsideDownRotation = Surface.ROTATION_270;
1404 } else {
1405 mPortraitRotation = Surface.ROTATION_270;
1406 mUpsideDownRotation = Surface.ROTATION_90;
1407 }
1408 } else {
Dianne Hackborn81e56d52011-05-26 00:55:58 -07001409 shortSize = width;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001410 longSize = height;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001411 mPortraitRotation = Surface.ROTATION_0;
1412 mUpsideDownRotation = Surface.ROTATION_180;
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001413 if (res.getBoolean(com.android.internal.R.bool.config_reverseDefaultRotation)) {
Dianne Hackborn9d132642011-04-21 17:26:39 -07001414 mLandscapeRotation = Surface.ROTATION_270;
1415 mSeascapeRotation = Surface.ROTATION_90;
1416 } else {
1417 mLandscapeRotation = Surface.ROTATION_90;
1418 mSeascapeRotation = Surface.ROTATION_270;
1419 }
1420 }
Dianne Hackborn81e56d52011-05-26 00:55:58 -07001421
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001422 mStatusBarHeight =
1423 res.getDimensionPixelSize(com.android.internal.R.dimen.status_bar_height);
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001424
Daniel Sandler9f65c4c2012-04-26 01:35:35 -04001425 // Height of the navigation bar when presented horizontally at bottom
1426 mNavigationBarHeightForRotation[mPortraitRotation] =
1427 mNavigationBarHeightForRotation[mUpsideDownRotation] =
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001428 res.getDimensionPixelSize(com.android.internal.R.dimen.navigation_bar_height);
Daniel Sandler9f65c4c2012-04-26 01:35:35 -04001429 mNavigationBarHeightForRotation[mLandscapeRotation] =
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001430 mNavigationBarHeightForRotation[mSeascapeRotation] = res.getDimensionPixelSize(
1431 com.android.internal.R.dimen.navigation_bar_height_landscape);
Daniel Sandler9f65c4c2012-04-26 01:35:35 -04001432
1433 // Width of the navigation bar when presented vertically along one side
1434 mNavigationBarWidthForRotation[mPortraitRotation] =
1435 mNavigationBarWidthForRotation[mUpsideDownRotation] =
1436 mNavigationBarWidthForRotation[mLandscapeRotation] =
1437 mNavigationBarWidthForRotation[mSeascapeRotation] =
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001438 res.getDimensionPixelSize(com.android.internal.R.dimen.navigation_bar_width);
Daniel Sandler4a066c52012-04-20 14:49:13 -04001439
1440 // SystemUI (status bar) layout policy
Dianne Hackborndde331c2012-08-03 14:01:57 -07001441 int shortSizeDp = shortSize * DisplayMetrics.DENSITY_DEFAULT / density;
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001442 int longSizeDp = longSize * DisplayMetrics.DENSITY_DEFAULT / density;
Daniel Sandler4a066c52012-04-20 14:49:13 -04001443
Devin Kimd7b12b42014-05-05 14:34:58 -07001444 // Allow the navigation bar to move on non-square small devices (phones).
1445 mNavigationBarCanMove = width != height && shortSizeDp < 600;
Daniel Sandler36412a72011-08-04 09:35:13 -04001446
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001447 mHasNavigationBar = res.getBoolean(com.android.internal.R.bool.config_showNavigationBar);
John Spurlock80f00c12013-06-13 11:10:51 -04001448 // Allow a system property to override this. Used by the emulator.
1449 // See also hasNavigationBar().
1450 String navBarOverride = SystemProperties.get("qemu.hw.mainkeys");
1451 if ("1".equals(navBarOverride)) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001452 mHasNavigationBar = false;
John Spurlock80f00c12013-06-13 11:10:51 -04001453 } else if ("0".equals(navBarOverride)) {
1454 mHasNavigationBar = true;
Daniel Sandler0c4ccff2011-10-19 16:39:14 -04001455 }
1456
Jeff Brown27f1d672012-10-17 18:32:34 -07001457 // For demo purposes, allow the rotation of the HDMI display to be controlled.
1458 // By default, HDMI locks rotation to landscape.
Erik Gilling9a41ef82011-09-26 19:21:03 -07001459 if ("portrait".equals(SystemProperties.get("persist.demo.hdmirotation"))) {
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001460 mDemoHdmiRotation = mPortraitRotation;
Erik Gilling9a41ef82011-09-26 19:21:03 -07001461 } else {
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001462 mDemoHdmiRotation = mLandscapeRotation;
Erik Gilling9a41ef82011-09-26 19:21:03 -07001463 }
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001464 mDemoHdmiRotationLock = SystemProperties.getBoolean("persist.demo.hdmirotationlock", false);
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001465
Chong Zhangae6119ff2014-11-11 18:54:39 -08001466 // For demo purposes, allow the rotation of the remote display to be controlled.
1467 // By default, remote display locks rotation to landscape.
1468 if ("portrait".equals(SystemProperties.get("persist.demo.remoterotation"))) {
1469 mDemoRotation = mPortraitRotation;
1470 } else {
1471 mDemoRotation = mLandscapeRotation;
1472 }
1473 mDemoRotationLock = SystemProperties.getBoolean(
1474 "persist.demo.rotationlock", false);
1475
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001476 // Only force the default orientation if the screen is xlarge, at least 960dp x 720dp, per
1477 // http://developer.android.com/guide/practices/screens_support.html#range
1478 mForceDefaultOrientation = longSizeDp >= 960 && shortSizeDp >= 720 &&
1479 res.getBoolean(com.android.internal.R.bool.config_forceDefaultOrientation) &&
1480 // For debug purposes the next line turns this feature off with:
1481 // $ adb shell setprop config.override_forced_orient true
1482 // $ adb shell wm size reset
1483 !"true".equals(SystemProperties.get("config.override_forced_orient"));
1484 }
1485
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07001486 /**
1487 * @return whether the navigation bar can be hidden, e.g. the device has a
1488 * navigation bar and touch exploration is not enabled
1489 */
1490 private boolean canHideNavigationBar() {
Svetoslav8e3feb12014-02-24 13:46:47 -08001491 return mHasNavigationBar
1492 && !mAccessibilityManager.isTouchExplorationEnabled();
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07001493 }
1494
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001495 @Override
1496 public boolean isDefaultOrientationForced() {
1497 return mForceDefaultOrientation;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001498 }
1499
Dianne Hackbornc652de82013-02-15 16:32:56 -08001500 @Override
1501 public void setDisplayOverscan(Display display, int left, int top, int right, int bottom) {
1502 if (display.getDisplayId() == Display.DEFAULT_DISPLAY) {
1503 mOverscanLeft = left;
1504 mOverscanTop = top;
1505 mOverscanRight = right;
1506 mOverscanBottom = bottom;
1507 }
1508 }
1509
Dianne Hackbornc777e072010-02-12 13:07:59 -08001510 public void updateSettings() {
1511 ContentResolver resolver = mContext.getContentResolver();
1512 boolean updateRotation = false;
Dianne Hackbornc777e072010-02-12 13:07:59 -08001513 synchronized (mLock) {
Christopher Tate5e08af02012-09-21 17:17:22 -07001514 mEndcallBehavior = Settings.System.getIntForUser(resolver,
David Brownbaf8d092010-03-08 21:52:59 -08001515 Settings.System.END_BUTTON_BEHAVIOR,
Christopher Tate5e08af02012-09-21 17:17:22 -07001516 Settings.System.END_BUTTON_BEHAVIOR_DEFAULT,
1517 UserHandle.USER_CURRENT);
1518 mIncallPowerBehavior = Settings.Secure.getIntForUser(resolver,
David Brownbaf8d092010-03-08 21:52:59 -08001519 Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR,
Christopher Tate5e08af02012-09-21 17:17:22 -07001520 Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR_DEFAULT,
1521 UserHandle.USER_CURRENT);
Daniel Sandlerb73617d2010-08-17 00:41:00 -04001522
Jeff Browna20dda42014-05-27 20:57:24 -07001523 // Configure wake gesture.
1524 boolean wakeGestureEnabledSetting = Settings.Secure.getIntForUser(resolver,
1525 Settings.Secure.WAKE_GESTURE_ENABLED, 0,
1526 UserHandle.USER_CURRENT) != 0;
1527 if (mWakeGestureEnabledSetting != wakeGestureEnabledSetting) {
1528 mWakeGestureEnabledSetting = wakeGestureEnabledSetting;
1529 updateWakeGestureListenerLp();
1530 }
1531
Jeff Brown207673cd2012-06-05 17:47:11 -07001532 // Configure rotation lock.
Christopher Tate5e08af02012-09-21 17:17:22 -07001533 int userRotation = Settings.System.getIntForUser(resolver,
1534 Settings.System.USER_ROTATION, Surface.ROTATION_0,
1535 UserHandle.USER_CURRENT);
Jeff Brown207673cd2012-06-05 17:47:11 -07001536 if (mUserRotation != userRotation) {
1537 mUserRotation = userRotation;
1538 updateRotation = true;
1539 }
Christopher Tate5e08af02012-09-21 17:17:22 -07001540 int userRotationMode = Settings.System.getIntForUser(resolver,
1541 Settings.System.ACCELEROMETER_ROTATION, 0, UserHandle.USER_CURRENT) != 0 ?
Jeff Brown207673cd2012-06-05 17:47:11 -07001542 WindowManagerPolicy.USER_ROTATION_FREE :
1543 WindowManagerPolicy.USER_ROTATION_LOCKED;
1544 if (mUserRotationMode != userRotationMode) {
1545 mUserRotationMode = userRotationMode;
1546 updateRotation = true;
Dianne Hackbornc777e072010-02-12 13:07:59 -08001547 updateOrientationListenerLp();
1548 }
Daniel Sandlerb73617d2010-08-17 00:41:00 -04001549
Dianne Hackbornc777e072010-02-12 13:07:59 -08001550 if (mSystemReady) {
Christopher Tate5e08af02012-09-21 17:17:22 -07001551 int pointerLocation = Settings.System.getIntForUser(resolver,
1552 Settings.System.POINTER_LOCATION, 0, UserHandle.USER_CURRENT);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001553 if (mPointerLocationMode != pointerLocation) {
1554 mPointerLocationMode = pointerLocation;
Jeff Brown70825162012-03-28 17:27:48 -07001555 mHandler.sendEmptyMessage(pointerLocation != 0 ?
1556 MSG_ENABLE_POINTER_LOCATION : MSG_DISABLE_POINTER_LOCATION);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001557 }
1558 }
1559 // use screen off timeout setting as the timeout for the lockscreen
Christopher Tate5e08af02012-09-21 17:17:22 -07001560 mLockScreenTimeout = Settings.System.getIntForUser(resolver,
1561 Settings.System.SCREEN_OFF_TIMEOUT, 0, UserHandle.USER_CURRENT);
1562 String imId = Settings.Secure.getStringForUser(resolver,
1563 Settings.Secure.DEFAULT_INPUT_METHOD, UserHandle.USER_CURRENT);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001564 boolean hasSoftInput = imId != null && imId.length() > 0;
1565 if (mHasSoftInput != hasSoftInput) {
1566 mHasSoftInput = hasSoftInput;
1567 updateRotation = true;
1568 }
John Spurlockf1a36642013-10-12 17:50:42 -04001569 if (mImmersiveModeConfirmation != null) {
John Spurlock4355a532014-02-19 09:49:25 -05001570 mImmersiveModeConfirmation.loadSetting(mCurrentUserId);
John Spurlockd67ec252013-09-05 11:31:54 -04001571 }
John Spurlockc6d1c602014-01-17 15:22:06 -05001572 PolicyControl.reloadFromSetting(mContext);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001573 }
1574 if (updateRotation) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07001575 updateRotation(true);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001576 }
Jeff Brown70825162012-03-28 17:27:48 -07001577 }
1578
Jeff Browna20dda42014-05-27 20:57:24 -07001579 private void updateWakeGestureListenerLp() {
1580 if (shouldEnableWakeGestureLp()) {
1581 mWakeGestureListener.requestWakeUpTrigger();
1582 } else {
1583 mWakeGestureListener.cancelWakeUpTrigger();
1584 }
1585 }
1586
1587 private boolean shouldEnableWakeGestureLp() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07001588 return mWakeGestureEnabledSetting && !mAwake
Jeff Browna20dda42014-05-27 20:57:24 -07001589 && (!mLidControlsSleep || mLidState != LID_CLOSED)
1590 && mWakeGestureListener.isSupported();
1591 }
1592
Jeff Brown70825162012-03-28 17:27:48 -07001593 private void enablePointerLocation() {
1594 if (mPointerLocationView == null) {
1595 mPointerLocationView = new PointerLocationView(mContext);
1596 mPointerLocationView.setPrintCoords(false);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001597 WindowManager.LayoutParams lp = new WindowManager.LayoutParams(
1598 WindowManager.LayoutParams.MATCH_PARENT,
1599 WindowManager.LayoutParams.MATCH_PARENT);
Jeff Brown3b2b3542010-10-15 00:54:27 -07001600 lp.type = WindowManager.LayoutParams.TYPE_SECURE_SYSTEM_OVERLAY;
Jeff Brownbfcb60a2011-09-08 18:51:14 -07001601 lp.flags = WindowManager.LayoutParams.FLAG_FULLSCREEN
1602 | WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE
1603 | WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE
1604 | WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN;
Jeff Brown90fc9052012-10-01 14:44:24 -07001605 if (ActivityManager.isHighEndGfx()) {
1606 lp.flags |= WindowManager.LayoutParams.FLAG_HARDWARE_ACCELERATED;
1607 lp.privateFlags |=
1608 WindowManager.LayoutParams.PRIVATE_FLAG_FORCE_HARDWARE_ACCELERATED;
1609 }
Dianne Hackbornc777e072010-02-12 13:07:59 -08001610 lp.format = PixelFormat.TRANSLUCENT;
1611 lp.setTitle("PointerLocation");
Dianne Hackborn5fd21692011-06-07 14:09:47 -07001612 WindowManager wm = (WindowManager)
Dianne Hackbornc777e072010-02-12 13:07:59 -08001613 mContext.getSystemService(Context.WINDOW_SERVICE);
Jeff Browncc4f7db2011-08-30 20:34:48 -07001614 lp.inputFeatures |= WindowManager.LayoutParams.INPUT_FEATURE_NO_INPUT_CHANNEL;
Jeff Brown70825162012-03-28 17:27:48 -07001615 wm.addView(mPointerLocationView, lp);
Michael Wrightc9c487e2013-11-07 18:55:09 -08001616 mWindowManagerFuncs.registerPointerEventListener(mPointerLocationView);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001617 }
Dianne Hackbornc777e072010-02-12 13:07:59 -08001618 }
Jeff Brown70825162012-03-28 17:27:48 -07001619
1620 private void disablePointerLocation() {
Jeff Brown70825162012-03-28 17:27:48 -07001621 if (mPointerLocationView != null) {
Michael Wrightc9c487e2013-11-07 18:55:09 -08001622 mWindowManagerFuncs.unregisterPointerEventListener(mPointerLocationView);
1623 WindowManager wm = (WindowManager) mContext.getSystemService(Context.WINDOW_SERVICE);
Jeff Brown70825162012-03-28 17:27:48 -07001624 wm.removeView(mPointerLocationView);
1625 mPointerLocationView = null;
1626 }
1627 }
1628
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001629 private int readRotation(int resID) {
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001630 try {
1631 int rotation = mContext.getResources().getInteger(resID);
1632 switch (rotation) {
1633 case 0:
1634 return Surface.ROTATION_0;
1635 case 90:
1636 return Surface.ROTATION_90;
1637 case 180:
1638 return Surface.ROTATION_180;
1639 case 270:
1640 return Surface.ROTATION_270;
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001641 }
1642 } catch (Resources.NotFoundException e) {
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001643 // fall through
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001644 }
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001645 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001646 }
1647
1648 /** {@inheritDoc} */
Craig Mautner88400d32012-09-30 12:35:45 -07001649 @Override
Dianne Hackbornc2293022013-02-06 23:14:49 -08001650 public int checkAddPermission(WindowManager.LayoutParams attrs, int[] outAppOp) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001651 int type = attrs.type;
Dianne Hackbornc2293022013-02-06 23:14:49 -08001652
1653 outAppOp[0] = AppOpsManager.OP_NONE;
1654
Wale Ogunwale74bf0652015-01-12 10:24:36 -08001655 if (!((type >= FIRST_APPLICATION_WINDOW && type <= LAST_APPLICATION_WINDOW)
1656 || (type >= FIRST_SUB_WINDOW && type <= LAST_SUB_WINDOW)
1657 || (type >= FIRST_SYSTEM_WINDOW && type <= LAST_SYSTEM_WINDOW))) {
1658 return WindowManagerGlobal.ADD_INVALID_TYPE;
1659 }
1660
1661 if (type < FIRST_SYSTEM_WINDOW || type > LAST_SYSTEM_WINDOW) {
1662 // Window manager will make sure these are okay.
Jeff Brown98365d72012-08-19 20:30:52 -07001663 return WindowManagerGlobal.ADD_OKAY;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001664 }
1665 String permission = null;
1666 switch (type) {
1667 case TYPE_TOAST:
1668 // XXX right now the app process has complete control over
1669 // this... should introduce a token to let the system
1670 // monitor/control what they are doing.
Jason Monk1c7c3192014-06-26 12:52:18 -04001671 outAppOp[0] = AppOpsManager.OP_TOAST_WINDOW;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001672 break;
Daniel Sandler7d276c32012-01-30 14:33:52 -05001673 case TYPE_DREAM:
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001674 case TYPE_INPUT_METHOD:
Dianne Hackbornb7cd8b92009-08-08 20:53:03 -07001675 case TYPE_WALLPAPER:
keunyounga446bf02013-06-21 19:07:57 -07001676 case TYPE_PRIVATE_PRESENTATION:
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001677 case TYPE_VOICE_INTERACTION:
Svetoslav3a5c7212014-10-14 09:54:26 -07001678 case TYPE_ACCESSIBILITY_OVERLAY:
Dianne Hackbornb7cd8b92009-08-08 20:53:03 -07001679 // The window manager will check these.
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001680 break;
1681 case TYPE_PHONE:
1682 case TYPE_PRIORITY_PHONE:
1683 case TYPE_SYSTEM_ALERT:
1684 case TYPE_SYSTEM_ERROR:
1685 case TYPE_SYSTEM_OVERLAY:
1686 permission = android.Manifest.permission.SYSTEM_ALERT_WINDOW;
Dianne Hackbornc2293022013-02-06 23:14:49 -08001687 outAppOp[0] = AppOpsManager.OP_SYSTEM_ALERT_WINDOW;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001688 break;
1689 default:
1690 permission = android.Manifest.permission.INTERNAL_SYSTEM_WINDOW;
1691 }
1692 if (permission != null) {
1693 if (mContext.checkCallingOrSelfPermission(permission)
1694 != PackageManager.PERMISSION_GRANTED) {
Jeff Brown98365d72012-08-19 20:30:52 -07001695 return WindowManagerGlobal.ADD_PERMISSION_DENIED;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001696 }
1697 }
Jeff Brown98365d72012-08-19 20:30:52 -07001698 return WindowManagerGlobal.ADD_OKAY;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001699 }
Craig Mautner88400d32012-09-30 12:35:45 -07001700
1701 @Override
1702 public boolean checkShowToOwnerOnly(WindowManager.LayoutParams attrs) {
1703
1704 // If this switch statement is modified, modify the comment in the declarations of
1705 // the type in {@link WindowManager.LayoutParams} as well.
1706 switch (attrs.type) {
1707 default:
1708 // These are the windows that by default are shown only to the user that created
1709 // them. If this needs to be overridden, set
1710 // {@link WindowManager.LayoutParams.PRIVATE_FLAG_SHOW_FOR_ALL_USERS} in
1711 // {@link WindowManager.LayoutParams}. Note that permission
1712 // {@link android.Manifest.permission.INTERNAL_SYSTEM_WINDOW} is required as well.
1713 if ((attrs.privateFlags & PRIVATE_FLAG_SHOW_FOR_ALL_USERS) == 0) {
1714 return true;
1715 }
1716 break;
1717
1718 // These are the windows that by default are shown to all users. However, to
1719 // protect against spoofing, check permissions below.
1720 case TYPE_APPLICATION_STARTING:
1721 case TYPE_BOOT_PROGRESS:
1722 case TYPE_DISPLAY_OVERLAY:
1723 case TYPE_HIDDEN_NAV_CONSUMER:
Jim Miller5ecd8112013-01-09 18:50:26 -08001724 case TYPE_KEYGUARD_SCRIM:
Craig Mautner88400d32012-09-30 12:35:45 -07001725 case TYPE_KEYGUARD_DIALOG:
1726 case TYPE_MAGNIFICATION_OVERLAY:
1727 case TYPE_NAVIGATION_BAR:
1728 case TYPE_NAVIGATION_BAR_PANEL:
1729 case TYPE_PHONE:
1730 case TYPE_POINTER:
1731 case TYPE_PRIORITY_PHONE:
Craig Mautner88400d32012-09-30 12:35:45 -07001732 case TYPE_SEARCH_BAR:
1733 case TYPE_STATUS_BAR:
1734 case TYPE_STATUS_BAR_PANEL:
1735 case TYPE_STATUS_BAR_SUB_PANEL:
1736 case TYPE_SYSTEM_DIALOG:
Craig Mautner88400d32012-09-30 12:35:45 -07001737 case TYPE_VOLUME_OVERLAY:
keunyounga446bf02013-06-21 19:07:57 -07001738 case TYPE_PRIVATE_PRESENTATION:
Craig Mautner88400d32012-09-30 12:35:45 -07001739 break;
1740 }
1741
1742 // Check if third party app has set window to system window type.
1743 return mContext.checkCallingOrSelfPermission(
1744 android.Manifest.permission.INTERNAL_SYSTEM_WINDOW)
1745 != PackageManager.PERMISSION_GRANTED;
1746 }
1747
Craig Mautner967212c2013-04-13 21:10:58 -07001748 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001749 public void adjustWindowParamsLw(WindowManager.LayoutParams attrs) {
1750 switch (attrs.type) {
1751 case TYPE_SYSTEM_OVERLAY:
Jeff Brown3b2b3542010-10-15 00:54:27 -07001752 case TYPE_SECURE_SYSTEM_OVERLAY:
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001753 // These types of windows can't receive input events.
1754 attrs.flags |= WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE
1755 | WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE;
Jeff Brownbfcb60a2011-09-08 18:51:14 -07001756 attrs.flags &= ~WindowManager.LayoutParams.FLAG_WATCH_OUTSIDE_TOUCH;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001757 break;
Jorim Jaggi380ecb82014-03-14 17:25:20 +01001758 case TYPE_STATUS_BAR:
1759
1760 // If the Keyguard is in a hidden state (occluded by another window), we force to
1761 // remove the wallpaper and keyguard flag so that any change in-flight after setting
1762 // the keyguard as occluded wouldn't set these flags again.
1763 // See {@link #processKeyguardSetHiddenResultLw}.
1764 if (mKeyguardHidden) {
1765 attrs.flags &= ~WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
1766 attrs.privateFlags &= ~WindowManager.LayoutParams.PRIVATE_FLAG_KEYGUARD;
1767 }
1768 break;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001769 }
Adrian Roos38502112014-04-09 21:04:11 +02001770
1771 if (attrs.type != TYPE_STATUS_BAR) {
1772 // The status bar is the only window allowed to exhibit keyguard behavior.
1773 attrs.privateFlags &= ~WindowManager.LayoutParams.PRIVATE_FLAG_KEYGUARD;
1774 }
Adrian Roosea562512014-05-05 13:33:03 +02001775
1776 if (ActivityManager.isHighEndGfx()
1777 && (attrs.flags & FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS) != 0) {
Adrian Roosf5e9b5c2014-09-10 15:27:41 +02001778 attrs.subtreeSystemUiVisibility |= View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
Adrian Roosea562512014-05-05 13:33:03 +02001779 | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION;
1780 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001781 }
RoboErik8a2cfc32014-05-16 11:19:38 -07001782
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001783 void readLidState() {
Jeff Brown2e7760e2012-04-11 15:14:55 -07001784 mLidState = mWindowManagerFuncs.getLidState();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001785 }
RoboErik8a2cfc32014-05-16 11:19:38 -07001786
Michael Wright3818c922014-09-02 13:59:07 -07001787 private void readCameraLensCoverState() {
1788 mCameraLensCoverState = mWindowManagerFuncs.getCameraLensCoverState();
1789 }
1790
Jeff Browndaa37532012-05-01 15:54:03 -07001791 private boolean isHidden(int accessibilityMode) {
1792 switch (accessibilityMode) {
1793 case 1:
1794 return mLidState == LID_CLOSED;
1795 case 2:
1796 return mLidState == LID_OPEN;
1797 default:
1798 return false;
Dianne Hackborn2862fff2009-09-15 22:56:29 -07001799 }
Dianne Hackborn2862fff2009-09-15 22:56:29 -07001800 }
Jeff Brownd04a88c2011-01-16 14:05:47 -08001801
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001802 /** {@inheritDoc} */
Craig Mautner967212c2013-04-13 21:10:58 -07001803 @Override
Jeff Browndaa37532012-05-01 15:54:03 -07001804 public void adjustConfigurationLw(Configuration config, int keyboardPresence,
1805 int navigationPresence) {
1806 mHaveBuiltInKeyboard = (keyboardPresence & PRESENCE_INTERNAL) != 0;
1807
Jeff Brownf71343d2013-05-31 17:59:11 -07001808 readConfigurationDependentBehaviors();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001809 readLidState();
Jeff Brownc458ce92012-04-30 14:58:40 -07001810 applyLidSwitchState();
Jeff Brownd04a88c2011-01-16 14:05:47 -08001811
Jeff Browndaa37532012-05-01 15:54:03 -07001812 if (config.keyboard == Configuration.KEYBOARD_NOKEYS
1813 || (keyboardPresence == PRESENCE_INTERNAL
1814 && isHidden(mLidKeyboardAccessibility))) {
Jeff Brownd04a88c2011-01-16 14:05:47 -08001815 config.hardKeyboardHidden = Configuration.HARDKEYBOARDHIDDEN_YES;
Jeff Browndaa37532012-05-01 15:54:03 -07001816 if (!mHasSoftInput) {
1817 config.keyboardHidden = Configuration.KEYBOARDHIDDEN_YES;
1818 }
Jeff Brownd04a88c2011-01-16 14:05:47 -08001819 }
1820
Jeff Browndaa37532012-05-01 15:54:03 -07001821 if (config.navigation == Configuration.NAVIGATION_NONAV
1822 || (navigationPresence == PRESENCE_INTERNAL
1823 && isHidden(mLidNavigationAccessibility))) {
Jeff Brownd04a88c2011-01-16 14:05:47 -08001824 config.navigationHidden = Configuration.NAVIGATIONHIDDEN_YES;
Jeff Brownd04a88c2011-01-16 14:05:47 -08001825 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001826 }
Jeff Brownd04a88c2011-01-16 14:05:47 -08001827
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001828 /** {@inheritDoc} */
Craig Mautner967212c2013-04-13 21:10:58 -07001829 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001830 public int windowTypeToLayerLw(int type) {
1831 if (type >= FIRST_APPLICATION_WINDOW && type <= LAST_APPLICATION_WINDOW) {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001832 return 2;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001833 }
1834 switch (type) {
keunyounga446bf02013-06-21 19:07:57 -07001835 case TYPE_PRIVATE_PRESENTATION:
1836 return 2;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001837 case TYPE_WALLPAPER:
1838 // wallpaper is at the bottom, though the window manager may move it.
1839 return 2;
1840 case TYPE_PHONE:
1841 return 3;
1842 case TYPE_SEARCH_BAR:
1843 return 4;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001844 case TYPE_VOICE_INTERACTION:
1845 // voice interaction layer is almost immediately above apps.
1846 return 5;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001847 case TYPE_SYSTEM_DIALOG:
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001848 return 6;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001849 case TYPE_TOAST:
1850 // toasts and the plugged-in battery thing
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001851 return 7;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001852 case TYPE_PRIORITY_PHONE:
1853 // SIM errors and unlock. Not sure if this really should be in a high layer.
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001854 return 8;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001855 case TYPE_DREAM:
1856 // used for Dreams (screensavers with TYPE_DREAM windows)
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001857 return 9;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001858 case TYPE_SYSTEM_ALERT:
1859 // like the ANR / app crashed dialogs
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001860 return 10;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001861 case TYPE_INPUT_METHOD:
1862 // on-screen keyboards and other such input method user interfaces go here.
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001863 return 11;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001864 case TYPE_INPUT_METHOD_DIALOG:
1865 // on-screen keyboards and other such input method user interfaces go here.
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001866 return 12;
Jim Miller5ecd8112013-01-09 18:50:26 -08001867 case TYPE_KEYGUARD_SCRIM:
1868 // the safety window that shows behind keyguard while keyguard is starting
Jorim Jaggi380ecb82014-03-14 17:25:20 +01001869 return 13;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001870 case TYPE_STATUS_BAR_SUB_PANEL:
Jorim Jaggi380ecb82014-03-14 17:25:20 +01001871 return 14;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001872 case TYPE_STATUS_BAR:
Jorim Jaggi380ecb82014-03-14 17:25:20 +01001873 return 15;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001874 case TYPE_STATUS_BAR_PANEL:
Jorim Jaggi380ecb82014-03-14 17:25:20 +01001875 return 16;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001876 case TYPE_KEYGUARD_DIALOG:
1877 return 17;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001878 case TYPE_VOLUME_OVERLAY:
1879 // the on-screen volume indicator and controller shown when the user
1880 // changes the device volume
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001881 return 18;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001882 case TYPE_SYSTEM_OVERLAY:
1883 // the on-screen volume indicator and controller shown when the user
1884 // changes the device volume
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001885 return 19;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001886 case TYPE_NAVIGATION_BAR:
1887 // the navigation bar, if available, shows atop most things
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001888 return 20;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001889 case TYPE_NAVIGATION_BAR_PANEL:
1890 // some panels (e.g. search) need to show on top of the navigation bar
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001891 return 21;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001892 case TYPE_SYSTEM_ERROR:
1893 // system-level error dialogs
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001894 return 22;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001895 case TYPE_MAGNIFICATION_OVERLAY:
1896 // used to highlight the magnified portion of a display
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001897 return 23;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001898 case TYPE_DISPLAY_OVERLAY:
1899 // used to simulate secondary display devices
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001900 return 24;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001901 case TYPE_DRAG:
1902 // the drag layer: input for drag-and-drop is associated with this window,
1903 // which sits above all other focusable windows
Jorim Jaggi380ecb82014-03-14 17:25:20 +01001904 return 25;
Svetoslav3a5c7212014-10-14 09:54:26 -07001905 case TYPE_ACCESSIBILITY_OVERLAY:
1906 // overlay put by accessibility services to intercept user interaction
Jorim Jaggi380ecb82014-03-14 17:25:20 +01001907 return 26;
Svetoslav3a5c7212014-10-14 09:54:26 -07001908 case TYPE_SECURE_SYSTEM_OVERLAY:
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001909 return 27;
Svetoslav3a5c7212014-10-14 09:54:26 -07001910 case TYPE_BOOT_PROGRESS:
1911 return 28;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001912 case TYPE_POINTER:
1913 // the (mouse) pointer layer
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001914 return 29;
Svetoslav3a5c7212014-10-14 09:54:26 -07001915 case TYPE_HIDDEN_NAV_CONSUMER:
1916 return 30;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001917 }
1918 Log.e(TAG, "Unknown window type: " + type);
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001919 return 2;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001920 }
1921
1922 /** {@inheritDoc} */
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001923 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001924 public int subWindowTypeToLayerLw(int type) {
1925 switch (type) {
1926 case TYPE_APPLICATION_PANEL:
1927 case TYPE_APPLICATION_ATTACHED_DIALOG:
1928 return APPLICATION_PANEL_SUBLAYER;
1929 case TYPE_APPLICATION_MEDIA:
1930 return APPLICATION_MEDIA_SUBLAYER;
Dianne Hackborn5cb8d792009-05-21 17:34:15 -07001931 case TYPE_APPLICATION_MEDIA_OVERLAY:
1932 return APPLICATION_MEDIA_OVERLAY_SUBLAYER;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001933 case TYPE_APPLICATION_SUB_PANEL:
1934 return APPLICATION_SUB_PANEL_SUBLAYER;
1935 }
1936 Log.e(TAG, "Unknown sub-window type: " + type);
1937 return 0;
1938 }
1939
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001940 @Override
Dianne Hackbornabe0da02009-09-18 01:55:39 -07001941 public int getMaxWallpaperLayer() {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001942 return windowTypeToLayerLw(TYPE_STATUS_BAR);
Dianne Hackbornabe0da02009-09-18 01:55:39 -07001943 }
1944
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001945 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07001946 public int getNonDecorDisplayWidth(int fullWidth, int fullHeight, int rotation) {
Dianne Hackborn077ee852012-04-09 16:27:07 -07001947 if (mHasNavigationBar) {
1948 // For a basic navigation bar, when we are in landscape mode we place
1949 // the navigation bar to the side.
Daniel Sandler4a066c52012-04-20 14:49:13 -04001950 if (mNavigationBarCanMove && fullWidth > fullHeight) {
1951 return fullWidth - mNavigationBarWidthForRotation[rotation];
Dianne Hackborn077ee852012-04-09 16:27:07 -07001952 }
Dianne Hackborn1f903c32011-09-13 19:18:06 -07001953 }
1954 return fullWidth;
Dianne Hackborne2515ee2011-04-27 18:52:56 -04001955 }
1956
Jose Lima9546b202014-07-02 17:21:51 -07001957 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07001958 public int getNonDecorDisplayHeight(int fullWidth, int fullHeight, int rotation) {
Dianne Hackborn077ee852012-04-09 16:27:07 -07001959 if (mHasNavigationBar) {
1960 // For a basic navigation bar, when we are in portrait mode we place
1961 // the navigation bar to the bottom.
Daniel Sandler4a066c52012-04-20 14:49:13 -04001962 if (!mNavigationBarCanMove || fullWidth < fullHeight) {
1963 return fullHeight - mNavigationBarHeightForRotation[rotation];
Dianne Hackborn077ee852012-04-09 16:27:07 -07001964 }
1965 }
1966 return fullHeight;
Dianne Hackborn69cb8752011-05-19 18:13:32 -07001967 }
1968
Jose Lima9546b202014-07-02 17:21:51 -07001969 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07001970 public int getConfigDisplayWidth(int fullWidth, int fullHeight, int rotation) {
1971 return getNonDecorDisplayWidth(fullWidth, fullHeight, rotation);
Dianne Hackborn69cb8752011-05-19 18:13:32 -07001972 }
1973
Jose Lima9546b202014-07-02 17:21:51 -07001974 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07001975 public int getConfigDisplayHeight(int fullWidth, int fullHeight, int rotation) {
John Spurlock80f00c12013-06-13 11:10:51 -04001976 // There is a separate status bar at the top of the display. We don't count that as part
1977 // of the fixed decor, since it can hide; however, for purposes of configurations,
Dianne Hackborn077ee852012-04-09 16:27:07 -07001978 // we do want to exclude it since applications can't generally use that part
1979 // of the screen.
John Spurlock80f00c12013-06-13 11:10:51 -04001980 return getNonDecorDisplayHeight(fullWidth, fullHeight, rotation) - mStatusBarHeight;
Dianne Hackborne2515ee2011-04-27 18:52:56 -04001981 }
1982
Craig Mautnera3f4bf52012-10-10 20:37:48 -07001983 @Override
Craig Mautnerc9457fa2014-06-06 14:27:48 -07001984 public boolean isForceHiding(WindowManager.LayoutParams attrs) {
1985 return (attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0 ||
Jim Millerab954542014-10-10 18:21:49 -07001986 (isKeyguardHostWindow(attrs) &&
1987 (mKeyguardDelegate != null && mKeyguardDelegate.isShowing())) ||
Adrian Roos69e510d2014-07-13 14:57:59 +02001988 (attrs.type == TYPE_KEYGUARD_SCRIM);
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07001989 }
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001990
Craig Mautnera3f4bf52012-10-10 20:37:48 -07001991 @Override
Jorim Jaggi0d674622014-05-21 01:34:15 +02001992 public boolean isKeyguardHostWindow(WindowManager.LayoutParams attrs) {
1993 return attrs.type == TYPE_STATUS_BAR;
1994 }
1995
1996 @Override
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07001997 public boolean canBeForceHidden(WindowState win, WindowManager.LayoutParams attrs) {
Craig Mautnera3f4bf52012-10-10 20:37:48 -07001998 switch (attrs.type) {
1999 case TYPE_STATUS_BAR:
2000 case TYPE_NAVIGATION_BAR:
2001 case TYPE_WALLPAPER:
2002 case TYPE_DREAM:
Jim Miller5ecd8112013-01-09 18:50:26 -08002003 case TYPE_KEYGUARD_SCRIM:
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002004 return false;
2005 default:
2006 return true;
2007 }
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002008 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002009
Craig Mautner7d7808f2014-09-11 18:02:38 -07002010 @Override
2011 public WindowState getWinShowWhenLockedLw() {
2012 return mWinShowWhenLocked;
2013 }
2014
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002015 /** {@inheritDoc} */
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002016 @Override
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07002017 public View addStartingWindow(IBinder appToken, String packageName, int theme,
2018 CompatibilityInfo compatInfo, CharSequence nonLocalizedLabel, int labelRes,
Adam Powell04fe6eb2013-05-31 14:39:48 -07002019 int icon, int logo, int windowFlags) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002020 if (!SHOW_STARTING_ANIMATIONS) {
2021 return null;
2022 }
2023 if (packageName == null) {
2024 return null;
2025 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002026
Mathias Jeppssond1443e92012-08-24 15:25:32 +02002027 WindowManager wm = null;
2028 View view = null;
2029
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002030 try {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002031 Context context = mContext;
Craig Mautner6fbda632012-07-03 09:26:39 -07002032 if (DEBUG_STARTING_WINDOW) Slog.d(TAG, "addStartingWindow " + packageName
2033 + ": nonLocalizedLabel=" + nonLocalizedLabel + " theme="
2034 + Integer.toHexString(theme));
Dianne Hackborn247fe742011-01-08 17:25:57 -08002035 if (theme != context.getThemeResId() || labelRes != 0) {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002036 try {
2037 context = context.createPackageContext(packageName, 0);
Dianne Hackborn247fe742011-01-08 17:25:57 -08002038 context.setTheme(theme);
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002039 } catch (PackageManager.NameNotFoundException e) {
2040 // Ignore
2041 }
2042 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002043
Jorim Jaggib10e33f2015-02-04 21:57:40 +01002044 Window win = new PhoneWindow(context);
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002045 final TypedArray ta = win.getWindowStyle();
2046 if (ta.getBoolean(
2047 com.android.internal.R.styleable.Window_windowDisablePreview, false)
2048 || ta.getBoolean(
2049 com.android.internal.R.styleable.Window_windowShowWallpaper,false)) {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002050 return null;
2051 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002052
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002053 Resources r = context.getResources();
2054 win.setTitle(r.getText(labelRes, nonLocalizedLabel));
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002055
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002056 win.setType(
2057 WindowManager.LayoutParams.TYPE_APPLICATION_STARTING);
2058 // Force the window flags: this is a fake window, so it is not really
2059 // touchable or focusable by the user. We also add in the ALT_FOCUSABLE_IM
2060 // flag because we do know that the next window will take input
2061 // focus, so we want to get the IME window up on top of us right away.
2062 win.setFlags(
Dianne Hackborn7eec10e2010-11-12 18:03:47 -08002063 windowFlags|
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002064 WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE|
2065 WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE|
2066 WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM,
Dianne Hackborn7eec10e2010-11-12 18:03:47 -08002067 windowFlags|
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002068 WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE|
2069 WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE|
2070 WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM);
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002071
Adam Powell04fe6eb2013-05-31 14:39:48 -07002072 win.setDefaultIcon(icon);
2073 win.setDefaultLogo(logo);
2074
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002075 win.setLayout(WindowManager.LayoutParams.MATCH_PARENT,
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07002076 WindowManager.LayoutParams.MATCH_PARENT);
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002077
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002078 final WindowManager.LayoutParams params = win.getAttributes();
2079 params.token = appToken;
2080 params.packageName = packageName;
2081 params.windowAnimations = win.getWindowStyle().getResourceId(
2082 com.android.internal.R.styleable.Window_windowAnimationStyle, 0);
John Reck61375a82014-09-18 19:27:48 +00002083 params.privateFlags |=
2084 WindowManager.LayoutParams.PRIVATE_FLAG_FAKE_HARDWARE_ACCELERATED;
Craig Mautner88400d32012-09-30 12:35:45 -07002085 params.privateFlags |= WindowManager.LayoutParams.PRIVATE_FLAG_SHOW_FOR_ALL_USERS;
Adam Lesinski95c42972013-10-02 10:13:27 -07002086
2087 if (!compatInfo.supportsScreen()) {
2088 params.privateFlags |= WindowManager.LayoutParams.PRIVATE_FLAG_COMPATIBLE_WINDOW;
2089 }
2090
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002091 params.setTitle("Starting " + packageName);
2092
Mathias Jeppssond1443e92012-08-24 15:25:32 +02002093 wm = (WindowManager)context.getSystemService(Context.WINDOW_SERVICE);
2094 view = win.getDecorView();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002095
2096 if (win.isFloating()) {
2097 // Whoops, there is no way to display an animation/preview
2098 // of such a thing! After all that work... let's skip it.
2099 // (Note that we must do this here because it is in
2100 // getDecorView() where the theme is evaluated... maybe
2101 // we should peek the floating attribute from the theme
2102 // earlier.)
2103 return null;
2104 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002105
Craig Mautner6fbda632012-07-03 09:26:39 -07002106 if (DEBUG_STARTING_WINDOW) Slog.d(
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002107 TAG, "Adding starting window for " + packageName
2108 + " / " + appToken + ": "
2109 + (view.getParent() != null ? view : null));
2110
2111 wm.addView(view, params);
2112
2113 // Only return the view if it was successfully added to the
2114 // window manager... which we can tell by it having a parent.
2115 return view.getParent() != null ? view : null;
Jeff Brown98365d72012-08-19 20:30:52 -07002116 } catch (WindowManager.BadTokenException e) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002117 // ignore
Craig Mautner42bf39e2014-02-21 16:46:22 -08002118 Log.w(TAG, appToken + " already running, starting window not displayed. " +
2119 e.getMessage());
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002120 } catch (RuntimeException e) {
2121 // don't crash if something else bad happens, for example a
2122 // failure loading resources because we are loading from an app
2123 // on external storage that has been unmounted.
2124 Log.w(TAG, appToken + " failed creating starting window", e);
Mathias Jeppssond1443e92012-08-24 15:25:32 +02002125 } finally {
2126 if (view != null && view.getParent() == null) {
2127 Log.w(TAG, "view not successfully added to wm, removing view");
2128 wm.removeViewImmediate(view);
2129 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002130 }
2131
2132 return null;
2133 }
2134
2135 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07002136 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002137 public void removeStartingWindow(IBinder appToken, View window) {
Craig Mautner276a6eb2014-11-04 15:32:57 -08002138 if (DEBUG_STARTING_WINDOW) Slog.v(TAG, "Removing starting window for " + appToken + ": "
2139 + window + " Callers=" + Debug.getCallers(4));
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002140
2141 if (window != null) {
Dianne Hackborn5fd21692011-06-07 14:09:47 -07002142 WindowManager wm = (WindowManager)mContext.getSystemService(Context.WINDOW_SERVICE);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002143 wm.removeView(window);
2144 }
2145 }
2146
2147 /**
2148 * Preflight adding a window to the system.
RoboErik8a2cfc32014-05-16 11:19:38 -07002149 *
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002150 * Currently enforces that three window types are singletons:
2151 * <ul>
2152 * <li>STATUS_BAR_TYPE</li>
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002153 * <li>KEYGUARD_TYPE</li>
2154 * </ul>
RoboErik8a2cfc32014-05-16 11:19:38 -07002155 *
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002156 * @param win The window to be added
2157 * @param attrs Information about the window to be added
RoboErik8a2cfc32014-05-16 11:19:38 -07002158 *
Jeff Brown98365d72012-08-19 20:30:52 -07002159 * @return If ok, WindowManagerImpl.ADD_OKAY. If too many singletons,
2160 * WindowManagerImpl.ADD_MULTIPLE_SINGLETON
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002161 */
Jose Lima9546b202014-07-02 17:21:51 -07002162 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002163 public int prepareAddWindowLw(WindowState win, WindowManager.LayoutParams attrs) {
2164 switch (attrs.type) {
2165 case TYPE_STATUS_BAR:
Joe Onorato8bc6c512010-06-04 16:21:12 -04002166 mContext.enforceCallingOrSelfPermission(
2167 android.Manifest.permission.STATUS_BAR_SERVICE,
2168 "PhoneWindowManager");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002169 if (mStatusBar != null) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002170 if (mStatusBar.isAlive()) {
Jeff Brown98365d72012-08-19 20:30:52 -07002171 return WindowManagerGlobal.ADD_MULTIPLE_SINGLETON;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002172 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002173 }
2174 mStatusBar = win;
John Spurlock27735a42013-08-14 17:57:38 -04002175 mStatusBarController.setWindow(win);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002176 break;
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002177 case TYPE_NAVIGATION_BAR:
2178 mContext.enforceCallingOrSelfPermission(
2179 android.Manifest.permission.STATUS_BAR_SERVICE,
2180 "PhoneWindowManager");
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002181 if (mNavigationBar != null) {
2182 if (mNavigationBar.isAlive()) {
Jeff Brown98365d72012-08-19 20:30:52 -07002183 return WindowManagerGlobal.ADD_MULTIPLE_SINGLETON;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002184 }
2185 }
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002186 mNavigationBar = win;
John Spurlock27735a42013-08-14 17:57:38 -04002187 mNavigationBarController.setWindow(win);
Craig Mautnereda67292013-04-28 13:50:14 -07002188 if (DEBUG_LAYOUT) Slog.i(TAG, "NAVIGATION BAR: " + mNavigationBar);
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002189 break;
Jim Millere898ac52012-04-06 17:10:57 -07002190 case TYPE_NAVIGATION_BAR_PANEL:
2191 mContext.enforceCallingOrSelfPermission(
2192 android.Manifest.permission.STATUS_BAR_SERVICE,
2193 "PhoneWindowManager");
2194 break;
Dianne Hackborn08743722009-12-21 12:16:51 -08002195 case TYPE_STATUS_BAR_PANEL:
Joe Onorato8bc6c512010-06-04 16:21:12 -04002196 mContext.enforceCallingOrSelfPermission(
2197 android.Manifest.permission.STATUS_BAR_SERVICE,
2198 "PhoneWindowManager");
Dianne Hackborn08743722009-12-21 12:16:51 -08002199 break;
Joe Onorato29fc2c92010-11-24 10:26:50 -08002200 case TYPE_STATUS_BAR_SUB_PANEL:
2201 mContext.enforceCallingOrSelfPermission(
2202 android.Manifest.permission.STATUS_BAR_SERVICE,
2203 "PhoneWindowManager");
Joe Onorato29fc2c92010-11-24 10:26:50 -08002204 break;
Jim Miller5ecd8112013-01-09 18:50:26 -08002205 case TYPE_KEYGUARD_SCRIM:
Jim Miller25190572013-02-28 17:36:24 -08002206 if (mKeyguardScrim != null) {
2207 return WindowManagerGlobal.ADD_MULTIPLE_SINGLETON;
2208 }
Jim Miller5ecd8112013-01-09 18:50:26 -08002209 mKeyguardScrim = win;
2210 break;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002211 }
Jeff Brown98365d72012-08-19 20:30:52 -07002212 return WindowManagerGlobal.ADD_OKAY;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002213 }
2214
2215 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07002216 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002217 public void removeWindowLw(WindowState win) {
2218 if (mStatusBar == win) {
2219 mStatusBar = null;
John Spurlock27735a42013-08-14 17:57:38 -04002220 mStatusBarController.setWindow(null);
Jim Millerc0b676d2013-03-22 16:11:08 -07002221 mKeyguardDelegate.showScrim();
Jim Miller5ecd8112013-01-09 18:50:26 -08002222 } else if (mKeyguardScrim == win) {
2223 Log.v(TAG, "Removing keyguard scrim");
2224 mKeyguardScrim = null;
2225 } if (mNavigationBar == win) {
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002226 mNavigationBar = null;
John Spurlock27735a42013-08-14 17:57:38 -04002227 mNavigationBarController.setWindow(null);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002228 }
2229 }
2230
2231 static final boolean PRINT_ANIM = false;
RoboErik8a2cfc32014-05-16 11:19:38 -07002232
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002233 /** {@inheritDoc} */
Craig Mautner4b71aa12012-12-27 17:20:01 -08002234 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002235 public int selectAnimationLw(WindowState win, int transit) {
2236 if (PRINT_ANIM) Log.i(TAG, "selectAnimation in " + win
2237 + ": transit=" + transit);
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002238 if (win == mStatusBar) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002239 boolean isKeyguard = (win.getAttrs().privateFlags & PRIVATE_FLAG_KEYGUARD) != 0;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002240 if (transit == TRANSIT_EXIT
2241 || transit == TRANSIT_HIDE) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002242 return isKeyguard ? -1 : R.anim.dock_top_exit;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002243 } else if (transit == TRANSIT_ENTER
2244 || transit == TRANSIT_SHOW) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002245 return isKeyguard ? -1 : R.anim.dock_top_enter;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002246 }
2247 } else if (win == mNavigationBar) {
2248 // This can be on either the bottom or the right.
2249 if (mNavigationBarOnBottom) {
Craig Mautner4b71aa12012-12-27 17:20:01 -08002250 if (transit == TRANSIT_EXIT
2251 || transit == TRANSIT_HIDE) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002252 return R.anim.dock_bottom_exit;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002253 } else if (transit == TRANSIT_ENTER
2254 || transit == TRANSIT_SHOW) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002255 return R.anim.dock_bottom_enter;
2256 }
2257 } else {
Craig Mautner4b71aa12012-12-27 17:20:01 -08002258 if (transit == TRANSIT_EXIT
2259 || transit == TRANSIT_HIDE) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002260 return R.anim.dock_right_exit;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002261 } else if (transit == TRANSIT_ENTER
2262 || transit == TRANSIT_SHOW) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002263 return R.anim.dock_right_enter;
2264 }
2265 }
Craig Mautner4b71aa12012-12-27 17:20:01 -08002266 }
2267
2268 if (transit == TRANSIT_PREVIEW_DONE) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002269 if (win.hasAppShownWindows()) {
2270 if (PRINT_ANIM) Log.i(TAG, "**** STARTING EXIT");
2271 return com.android.internal.R.anim.app_starting_exit;
2272 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07002273 } else if (win.getAttrs().type == TYPE_DREAM && mDreamingLockscreen
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002274 && transit == TRANSIT_ENTER) {
2275 // Special case: we are animating in a dream, while the keyguard
2276 // is shown. We don't want an animation on the dream, because
2277 // we need it shown immediately with the keyguard animating away
2278 // to reveal it.
2279 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002280 }
2281
2282 return 0;
2283 }
2284
Craig Mautner3c174372013-02-21 17:54:37 -08002285 @Override
2286 public void selectRotationAnimationLw(int anim[]) {
2287 if (PRINT_ANIM) Slog.i(TAG, "selectRotationAnimation mTopFullscreen="
2288 + mTopFullscreenOpaqueWindowState + " rotationAnimation="
2289 + (mTopFullscreenOpaqueWindowState == null ?
2290 "0" : mTopFullscreenOpaqueWindowState.getAttrs().rotationAnimation));
2291 if (mTopFullscreenOpaqueWindowState != null && mTopIsFullscreen) {
2292 switch (mTopFullscreenOpaqueWindowState.getAttrs().rotationAnimation) {
2293 case ROTATION_ANIMATION_CROSSFADE:
2294 anim[0] = R.anim.rotation_animation_xfade_exit;
2295 anim[1] = R.anim.rotation_animation_enter;
2296 break;
2297 case ROTATION_ANIMATION_JUMPCUT:
2298 anim[0] = R.anim.rotation_animation_jump_exit;
2299 anim[1] = R.anim.rotation_animation_enter;
2300 break;
2301 case ROTATION_ANIMATION_ROTATE:
2302 default:
2303 anim[0] = anim[1] = 0;
2304 break;
2305 }
2306 } else {
2307 anim[0] = anim[1] = 0;
2308 }
2309 }
2310
2311 @Override
2312 public boolean validateRotationAnimationLw(int exitAnimId, int enterAnimId,
2313 boolean forceDefault) {
2314 switch (exitAnimId) {
2315 case R.anim.rotation_animation_xfade_exit:
2316 case R.anim.rotation_animation_jump_exit:
2317 // These are the only cases that matter.
2318 if (forceDefault) {
2319 return false;
2320 }
2321 int anim[] = new int[2];
2322 selectRotationAnimationLw(anim);
2323 return (exitAnimId == anim[0] && enterAnimId == anim[1]);
2324 default:
2325 return true;
2326 }
2327 }
2328
2329 @Override
Jorim Jaggi84a3e7a2014-08-13 17:58:58 +02002330 public Animation createForceHideEnterAnimation(boolean onWallpaper,
2331 boolean goingToNotificationShade) {
2332 if (goingToNotificationShade) {
2333 return AnimationUtils.loadAnimation(mContext, R.anim.lock_screen_behind_enter_fade_in);
Craig Mautnerb8340802014-11-04 15:32:57 -08002334 }
Craig Mautner276a6eb2014-11-04 15:32:57 -08002335
2336 AnimationSet set = (AnimationSet) AnimationUtils.loadAnimation(mContext, onWallpaper ?
2337 R.anim.lock_screen_behind_enter_wallpaper :
2338 R.anim.lock_screen_behind_enter);
2339
2340 // TODO: Use XML interpolators when we have log interpolators available in XML.
2341 final List<Animation> animations = set.getAnimations();
2342 for (int i = animations.size() - 1; i >= 0; --i) {
2343 animations.get(i).setInterpolator(mLogDecelerateInterpolator);
2344 }
2345
2346 return set;
Jorim Jaggi76a16232014-08-08 17:00:47 +02002347 }
2348
2349
2350 @Override
Jorim Jaggi84a3e7a2014-08-13 17:58:58 +02002351 public Animation createForceHideWallpaperExitAnimation(boolean goingToNotificationShade) {
2352 if (goingToNotificationShade) {
2353 return null;
2354 } else {
2355 return AnimationUtils.loadAnimation(mContext, R.anim.lock_screen_wallpaper_exit);
2356 }
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002357 }
John Spurlockc8b46ca2013-04-08 12:59:26 -04002358
2359 private static void awakenDreams() {
2360 IDreamManager dreamManager = getDreamManager();
2361 if (dreamManager != null) {
2362 try {
2363 dreamManager.awaken();
2364 } catch (RemoteException e) {
2365 // fine, stay asleep then
2366 }
2367 }
2368 }
2369
2370 static IDreamManager getDreamManager() {
2371 return IDreamManager.Stub.asInterface(
2372 ServiceManager.checkService(DreamService.DREAM_SERVICE));
2373 }
2374
Tyler Gunnef9f6f92014-09-12 22:16:17 -07002375 TelecomManager getTelecommService() {
2376 return (TelecomManager) mContext.getSystemService(Context.TELECOM_SERVICE);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002377 }
2378
Jeff Brown4d396052010-10-29 21:50:21 -07002379 static IAudioService getAudioService() {
2380 IAudioService audioService = IAudioService.Stub.asInterface(
2381 ServiceManager.checkService(Context.AUDIO_SERVICE));
2382 if (audioService == null) {
2383 Log.w(TAG, "Unable to find IAudioService interface.");
2384 }
2385 return audioService;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002386 }
2387
2388 boolean keyguardOn() {
Jim Millerab954542014-10-10 18:21:49 -07002389 return isKeyguardShowingAndNotOccluded() || inKeyguardRestrictedKeyInputMode();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002390 }
2391
2392 private static final int[] WINDOW_TYPES_WHERE_HOME_DOESNT_WORK = {
2393 WindowManager.LayoutParams.TYPE_SYSTEM_ALERT,
2394 WindowManager.LayoutParams.TYPE_SYSTEM_ERROR,
2395 };
2396
2397 /** {@inheritDoc} */
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002398 @Override
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002399 public long interceptKeyBeforeDispatching(WindowState win, KeyEvent event, int policyFlags) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002400 final boolean keyguardOn = keyguardOn();
Jeff Brown1f245102010-11-18 20:53:46 -08002401 final int keyCode = event.getKeyCode();
2402 final int repeatCount = event.getRepeatCount();
2403 final int metaState = event.getMetaState();
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002404 final int flags = event.getFlags();
Jeff Brown1f245102010-11-18 20:53:46 -08002405 final boolean down = event.getAction() == KeyEvent.ACTION_DOWN;
2406 final boolean canceled = event.isCanceled();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002407
Jeff Brown40013652012-05-16 21:22:36 -07002408 if (DEBUG_INPUT) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002409 Log.d(TAG, "interceptKeyTi keyCode=" + keyCode + " down=" + down + " repeatCount="
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002410 + repeatCount + " keyguardOn=" + keyguardOn + " mHomePressed=" + mHomePressed
2411 + " canceled=" + canceled);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002412 }
2413
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002414 // If we think we might have a volume down & power key chord on the way
2415 // but we're not sure, then tell the dispatcher to wait a little while and
2416 // try again later before dispatching.
Christopher Tatee90585f2012-03-05 18:56:25 -08002417 if (mScreenshotChordEnabled && (flags & KeyEvent.FLAG_FALLBACK) == 0) {
Jeff Brown13f00f02014-10-31 14:45:50 -07002418 if (mScreenshotChordVolumeDownKeyTriggered && !mScreenshotChordPowerKeyTriggered) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002419 final long now = SystemClock.uptimeMillis();
Jeff Brown13f00f02014-10-31 14:45:50 -07002420 final long timeoutTime = mScreenshotChordVolumeDownKeyTime
2421 + SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002422 if (now < timeoutTime) {
2423 return timeoutTime - now;
2424 }
2425 }
2426 if (keyCode == KeyEvent.KEYCODE_VOLUME_DOWN
Jeff Brown13f00f02014-10-31 14:45:50 -07002427 && mScreenshotChordVolumeDownKeyConsumed) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002428 if (!down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07002429 mScreenshotChordVolumeDownKeyConsumed = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002430 }
2431 return -1;
2432 }
2433 }
2434
Michael Wright6a62e552014-06-03 19:19:48 -07002435 // Cancel any pending meta actions if we see any other keys being pressed between the down
2436 // of the meta key and its corresponding up.
Michael Wright251e35d2014-08-22 15:40:27 -07002437 if (mPendingMetaAction && !KeyEvent.isMetaKey(keyCode)) {
Michael Wright6a62e552014-06-03 19:19:48 -07002438 mPendingMetaAction = false;
2439 }
2440
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002441 // First we always handle the home key here, so applications
2442 // can never break it, although if keyguard is on, we do let
2443 // it handle it, because that gives us the correct 5 second
2444 // timeout.
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002445 if (keyCode == KeyEvent.KEYCODE_HOME) {
Michael Jurka7f2668c2012-03-27 07:49:52 -07002446
Jeff Brown49ed71d2010-12-06 17:13:33 -08002447 // If we have released the home key, and didn't do anything else
2448 // while it was pressed, then it is time to go home!
Michael Jurka7f2668c2012-03-27 07:49:52 -07002449 if (!down) {
Jeff Browncaca8812013-05-09 13:34:33 -07002450 cancelPreloadRecentApps();
2451
Jeff Brown49ed71d2010-12-06 17:13:33 -08002452 mHomePressed = false;
Jeff Browncaca8812013-05-09 13:34:33 -07002453 if (mHomeConsumed) {
2454 mHomeConsumed = false;
Michael Jurka7f2668c2012-03-27 07:49:52 -07002455 return -1;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002456 }
Jeff Browncaca8812013-05-09 13:34:33 -07002457
2458 if (canceled) {
2459 Log.i(TAG, "Ignoring HOME; event canceled.");
2460 return -1;
2461 }
2462
Yorke Lee4f803242014-12-15 23:22:06 +00002463 // If an incoming call is ringing, HOME is totally disabled.
2464 // (The user is already on the InCallUI at this point,
2465 // and his ONLY options are to answer or reject the call.)
2466 TelecomManager telecomManager = getTelecommService();
2467 if (telecomManager != null && telecomManager.isRinging()) {
2468 Log.i(TAG, "Ignoring HOME; there's a ringing incoming call.");
2469 return -1;
2470 }
2471
Jeff Browncaca8812013-05-09 13:34:33 -07002472 // Delay handling home if a double-tap is possible.
2473 if (mDoubleTapOnHomeBehavior != DOUBLE_TAP_HOME_NOTHING) {
2474 mHandler.removeCallbacks(mHomeDoubleTapTimeoutRunnable); // just in case
2475 mHomeDoubleTapPending = true;
2476 mHandler.postDelayed(mHomeDoubleTapTimeoutRunnable,
2477 ViewConfiguration.getDoubleTapTimeout());
2478 return -1;
2479 }
2480
Jeff Brown13f00f02014-10-31 14:45:50 -07002481 handleShortPressOnHome();
Jeff Browncaca8812013-05-09 13:34:33 -07002482 return -1;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002483 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002484
2485 // If a system window has focus, then it doesn't make sense
2486 // right now to interact with applications.
2487 WindowManager.LayoutParams attrs = win != null ? win.getAttrs() : null;
2488 if (attrs != null) {
2489 final int type = attrs.type;
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002490 if (type == WindowManager.LayoutParams.TYPE_KEYGUARD_SCRIM
2491 || type == WindowManager.LayoutParams.TYPE_KEYGUARD_DIALOG
2492 || (attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002493 // the "app" is keyguard, so give it the key
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002494 return 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002495 }
2496 final int typeCount = WINDOW_TYPES_WHERE_HOME_DOESNT_WORK.length;
2497 for (int i=0; i<typeCount; i++) {
2498 if (type == WINDOW_TYPES_WHERE_HOME_DOESNT_WORK[i]) {
2499 // don't do anything, but also don't pass it to the app
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002500 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002501 }
2502 }
2503 }
Jeff Browncaca8812013-05-09 13:34:33 -07002504
2505 // Remember that home is pressed and handle special actions.
2506 if (repeatCount == 0) {
2507 mHomePressed = true;
2508 if (mHomeDoubleTapPending) {
2509 mHomeDoubleTapPending = false;
2510 mHandler.removeCallbacks(mHomeDoubleTapTimeoutRunnable);
2511 handleDoubleTapOnHome();
2512 } else if (mLongPressOnHomeBehavior == LONG_PRESS_HOME_RECENT_SYSTEM_UI
2513 || mDoubleTapOnHomeBehavior == DOUBLE_TAP_HOME_RECENT_SYSTEM_UI) {
2514 preloadRecentApps();
Michael Jurka7f2668c2012-03-27 07:49:52 -07002515 }
Jeff Browncaca8812013-05-09 13:34:33 -07002516 } else if ((event.getFlags() & KeyEvent.FLAG_LONG_PRESS) != 0) {
2517 if (!keyguardOn) {
2518 handleLongPressOnHome();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002519 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002520 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002521 return -1;
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002522 } else if (keyCode == KeyEvent.KEYCODE_MENU) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002523 // Hijack modified menu keys for debugging features
2524 final int chordBug = KeyEvent.META_SHIFT_ON;
2525
2526 if (down && repeatCount == 0) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002527 if (mEnableShiftMenuBugReports && (metaState & chordBug) == chordBug) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002528 Intent intent = new Intent(Intent.ACTION_BUG_REPORT);
Dianne Hackborn5ac72a22012-08-29 18:32:08 -07002529 mContext.sendOrderedBroadcastAsUser(intent, UserHandle.CURRENT,
2530 null, null, null, 0, null, null);
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002531 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002532 } else if (SHOW_PROCESSES_ON_ALT_MENU &&
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002533 (metaState & KeyEvent.META_ALT_ON) == KeyEvent.META_ALT_ON) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002534 Intent service = new Intent();
2535 service.setClassName(mContext, "com.android.server.LoadAverageService");
2536 ContentResolver res = mContext.getContentResolver();
Jeff Sharkey8d9a1f62012-10-18 15:38:14 -07002537 boolean shown = Settings.Global.getInt(
2538 res, Settings.Global.SHOW_PROCESSES, 0) != 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002539 if (!shown) {
2540 mContext.startService(service);
2541 } else {
2542 mContext.stopService(service);
2543 }
Jeff Sharkey8d9a1f62012-10-18 15:38:14 -07002544 Settings.Global.putInt(
2545 res, Settings.Global.SHOW_PROCESSES, shown ? 0 : 1);
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002546 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002547 }
2548 }
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002549 } else if (keyCode == KeyEvent.KEYCODE_SEARCH) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002550 if (down) {
2551 if (repeatCount == 0) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002552 mSearchKeyShortcutPending = true;
2553 mConsumeSearchKeyUp = false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002554 }
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002555 } else {
2556 mSearchKeyShortcutPending = false;
2557 if (mConsumeSearchKeyUp) {
2558 mConsumeSearchKeyUp = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002559 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002560 }
2561 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002562 return 0;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002563 } else if (keyCode == KeyEvent.KEYCODE_APP_SWITCH) {
Michael Wrightc9ebea72013-01-16 19:25:02 -08002564 if (!keyguardOn) {
Jeff Browncaca8812013-05-09 13:34:33 -07002565 if (down && repeatCount == 0) {
2566 preloadRecentApps();
2567 } else if (!down) {
2568 toggleRecentApps();
Michael Wrightc9ebea72013-01-16 19:25:02 -08002569 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08002570 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002571 return -1;
Jeff Brownde7a8ea2012-06-13 18:28:57 -07002572 } else if (keyCode == KeyEvent.KEYCODE_ASSIST) {
2573 if (down) {
2574 if (repeatCount == 0) {
2575 mAssistKeyLongPressed = false;
2576 } else if (repeatCount == 1) {
2577 mAssistKeyLongPressed = true;
2578 if (!keyguardOn) {
2579 launchAssistLongPressAction();
2580 }
2581 }
2582 } else {
2583 if (mAssistKeyLongPressed) {
2584 mAssistKeyLongPressed = false;
2585 } else {
2586 if (!keyguardOn) {
2587 launchAssistAction();
2588 }
2589 }
2590 }
2591 return -1;
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002592 } else if (keyCode == KeyEvent.KEYCODE_VOICE_ASSIST) {
2593 if (!down) {
2594 Intent voiceIntent;
Michael Wright869a67c2014-08-26 19:33:06 -07002595 if (!keyguardOn) {
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002596 voiceIntent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
2597 } else {
2598 voiceIntent = new Intent(RecognizerIntent.ACTION_VOICE_SEARCH_HANDS_FREE);
Michael Wright869a67c2014-08-26 19:33:06 -07002599 voiceIntent.putExtra(RecognizerIntent.EXTRA_SECURE, true);
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002600 }
2601 mContext.startActivityAsUser(voiceIntent, UserHandle.CURRENT_OR_SELF);
2602 }
Jeff Sharkey2991fa32012-12-05 18:06:43 -08002603 } else if (keyCode == KeyEvent.KEYCODE_SYSRQ) {
2604 if (down && repeatCount == 0) {
2605 mHandler.post(mScreenshotRunnable);
2606 }
2607 return -1;
Michael Wrightb854e242013-02-05 17:54:02 -08002608 } else if (keyCode == KeyEvent.KEYCODE_BRIGHTNESS_UP
2609 || keyCode == KeyEvent.KEYCODE_BRIGHTNESS_DOWN) {
2610 if (down) {
2611 int direction = keyCode == KeyEvent.KEYCODE_BRIGHTNESS_UP ? 1 : -1;
2612
2613 // Disable autobrightness if it's on
2614 int auto = Settings.System.getIntForUser(
2615 mContext.getContentResolver(),
2616 Settings.System.SCREEN_BRIGHTNESS_MODE,
2617 Settings.System.SCREEN_BRIGHTNESS_MODE_MANUAL,
2618 UserHandle.USER_CURRENT_OR_SELF);
2619 if (auto != 0) {
2620 Settings.System.putIntForUser(mContext.getContentResolver(),
2621 Settings.System.SCREEN_BRIGHTNESS_MODE,
2622 Settings.System.SCREEN_BRIGHTNESS_MODE_MANUAL,
2623 UserHandle.USER_CURRENT_OR_SELF);
2624 }
2625
2626 int min = mPowerManager.getMinimumScreenBrightnessSetting();
2627 int max = mPowerManager.getMaximumScreenBrightnessSetting();
2628 int step = (max - min + BRIGHTNESS_STEPS - 1) / BRIGHTNESS_STEPS * direction;
2629 int brightness = Settings.System.getIntForUser(mContext.getContentResolver(),
2630 Settings.System.SCREEN_BRIGHTNESS,
2631 mPowerManager.getDefaultScreenBrightnessSetting(),
2632 UserHandle.USER_CURRENT_OR_SELF);
2633 brightness += step;
2634 // Make sure we don't go beyond the limits.
2635 brightness = Math.min(max, brightness);
2636 brightness = Math.max(min, brightness);
2637
2638 Settings.System.putIntForUser(mContext.getContentResolver(),
2639 Settings.System.SCREEN_BRIGHTNESS, brightness,
2640 UserHandle.USER_CURRENT_OR_SELF);
Alan Viverette5a399492014-07-14 16:19:38 -07002641 mContext.startActivityAsUser(new Intent(Intent.ACTION_SHOW_BRIGHTNESS_DIALOG),
2642 UserHandle.CURRENT_OR_SELF);
Michael Wrightb854e242013-02-05 17:54:02 -08002643 }
2644 return -1;
Michael Wrightce0c13a2014-07-30 10:49:21 -07002645 } else if (KeyEvent.isMetaKey(keyCode)) {
Michael Wright6a62e552014-06-03 19:19:48 -07002646 if (down) {
2647 mPendingMetaAction = true;
2648 } else if (mPendingMetaAction) {
Michael Wright8ab940a2014-09-01 11:01:27 -07002649 launchAssistAction(Intent.EXTRA_ASSIST_INPUT_HINT_KEYBOARD);
Michael Wright6a62e552014-06-03 19:19:48 -07002650 }
2651 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002652 }
Jeff Browncaab4d02010-12-09 22:13:41 -08002653
Jeff Brownc1fb48d2010-12-08 16:52:09 -08002654 // Shortcuts are invoked through Search+key, so intercept those here
Jeff Browncaab4d02010-12-09 22:13:41 -08002655 // Any printing key that is chorded with Search should be consumed
2656 // even if no shortcut was invoked. This prevents text from being
2657 // inadvertently inserted when using a keyboard that has built-in macro
2658 // shortcut keys (that emit Search+x) and some of them are not registered.
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002659 if (mSearchKeyShortcutPending) {
Jeff Browncaab4d02010-12-09 22:13:41 -08002660 final KeyCharacterMap kcm = event.getKeyCharacterMap();
2661 if (kcm.isPrintingKey(keyCode)) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002662 mConsumeSearchKeyUp = true;
2663 mSearchKeyShortcutPending = false;
Jeff Browncaab4d02010-12-09 22:13:41 -08002664 if (down && repeatCount == 0 && !keyguardOn) {
2665 Intent shortcutIntent = mShortcutManager.getIntent(kcm, keyCode, metaState);
2666 if (shortcutIntent != null) {
2667 shortcutIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Jeff Brownf0a3cc52011-01-26 18:42:46 -08002668 try {
Michael Wright43e27f72013-04-10 14:06:48 -07002669 mContext.startActivityAsUser(shortcutIntent, UserHandle.CURRENT);
Jeff Brownf0a3cc52011-01-26 18:42:46 -08002670 } catch (ActivityNotFoundException ex) {
2671 Slog.w(TAG, "Dropping shortcut key combination because "
2672 + "the activity to which it is registered was not found: "
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002673 + "SEARCH+" + KeyEvent.keyCodeToString(keyCode), ex);
Jeff Brownf0a3cc52011-01-26 18:42:46 -08002674 }
Jeff Browncaab4d02010-12-09 22:13:41 -08002675 } else {
2676 Slog.i(TAG, "Dropping unregistered shortcut key combination: "
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002677 + "SEARCH+" + KeyEvent.keyCodeToString(keyCode));
Jeff Brown49ed71d2010-12-06 17:13:33 -08002678 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002679 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002680 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002681 }
2682 }
2683
Jeff Brown68b909d2011-12-07 16:36:01 -08002684 // Invoke shortcuts using Meta.
Jeff Brown602ab322012-05-16 13:33:47 -07002685 if (down && repeatCount == 0 && !keyguardOn
Jeff Brown68b909d2011-12-07 16:36:01 -08002686 && (metaState & KeyEvent.META_META_ON) != 0) {
2687 final KeyCharacterMap kcm = event.getKeyCharacterMap();
Jeff Brown602ab322012-05-16 13:33:47 -07002688 if (kcm.isPrintingKey(keyCode)) {
2689 Intent shortcutIntent = mShortcutManager.getIntent(kcm, keyCode,
2690 metaState & ~(KeyEvent.META_META_ON
2691 | KeyEvent.META_META_LEFT_ON | KeyEvent.META_META_RIGHT_ON));
2692 if (shortcutIntent != null) {
2693 shortcutIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2694 try {
Michael Wright43e27f72013-04-10 14:06:48 -07002695 mContext.startActivityAsUser(shortcutIntent, UserHandle.CURRENT);
Jeff Brown602ab322012-05-16 13:33:47 -07002696 } catch (ActivityNotFoundException ex) {
2697 Slog.w(TAG, "Dropping shortcut key combination because "
2698 + "the activity to which it is registered was not found: "
2699 + "META+" + KeyEvent.keyCodeToString(keyCode), ex);
2700 }
2701 return -1;
Jeff Brown68b909d2011-12-07 16:36:01 -08002702 }
Jeff Brown68b909d2011-12-07 16:36:01 -08002703 }
2704 }
2705
Jeff Brown6651a632011-11-28 12:59:11 -08002706 // Handle application launch keys.
Jeff Brown602ab322012-05-16 13:33:47 -07002707 if (down && repeatCount == 0 && !keyguardOn) {
Jeff Brown6651a632011-11-28 12:59:11 -08002708 String category = sApplicationLaunchKeyCategories.get(keyCode);
2709 if (category != null) {
Dianne Hackbornf5b86712011-12-05 17:42:41 -08002710 Intent intent = Intent.makeMainSelectorActivity(Intent.ACTION_MAIN, category);
Jeff Brown6651a632011-11-28 12:59:11 -08002711 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2712 try {
Michael Wright43e27f72013-04-10 14:06:48 -07002713 mContext.startActivityAsUser(intent, UserHandle.CURRENT);
Jeff Brown6651a632011-11-28 12:59:11 -08002714 } catch (ActivityNotFoundException ex) {
2715 Slog.w(TAG, "Dropping application launch key because "
2716 + "the activity to which it is registered was not found: "
2717 + "keyCode=" + keyCode + ", category=" + category, ex);
2718 }
Jeff Brown68b909d2011-12-07 16:36:01 -08002719 return -1;
Jeff Brown6651a632011-11-28 12:59:11 -08002720 }
2721 }
2722
Michael Wright61c46752014-08-21 16:57:33 -07002723 // Display task switcher for ALT-TAB.
Jeff Brown68b909d2011-12-07 16:36:01 -08002724 if (down && repeatCount == 0 && keyCode == KeyEvent.KEYCODE_TAB) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07002725 if (mRecentAppsHeldModifiers == 0 && !keyguardOn) {
Jeff Brown68b909d2011-12-07 16:36:01 -08002726 final int shiftlessModifiers = event.getModifiers() & ~KeyEvent.META_SHIFT_MASK;
Michael Wright61c46752014-08-21 16:57:33 -07002727 if (KeyEvent.metaStateHasModifiers(shiftlessModifiers, KeyEvent.META_ALT_ON)) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07002728 mRecentAppsHeldModifiers = shiftlessModifiers;
2729 showRecentApps(true);
Jeff Brown68b909d2011-12-07 16:36:01 -08002730 return -1;
2731 }
2732 }
Winson Chung1e8d71b2014-05-16 17:05:22 -07002733 } else if (!down && mRecentAppsHeldModifiers != 0
2734 && (metaState & mRecentAppsHeldModifiers) == 0) {
2735 mRecentAppsHeldModifiers = 0;
Winson Chungcdcd4872014-08-05 18:00:13 -07002736 hideRecentApps(true, false);
Jeff Brown68b909d2011-12-07 16:36:01 -08002737 }
2738
Jeff Browncf39bdf2012-05-18 14:41:19 -07002739 // Handle keyboard language switching.
2740 if (down && repeatCount == 0
2741 && (keyCode == KeyEvent.KEYCODE_LANGUAGE_SWITCH
2742 || (keyCode == KeyEvent.KEYCODE_SPACE
2743 && (metaState & KeyEvent.META_CTRL_MASK) != 0))) {
2744 int direction = (metaState & KeyEvent.META_SHIFT_MASK) != 0 ? -1 : 1;
2745 mWindowManagerFuncs.switchKeyboardLayout(event.getDeviceId(), direction);
2746 return -1;
2747 }
2748 if (mLanguageSwitchKeyPressed && !down
2749 && (keyCode == KeyEvent.KEYCODE_LANGUAGE_SWITCH
2750 || keyCode == KeyEvent.KEYCODE_SPACE)) {
2751 mLanguageSwitchKeyPressed = false;
2752 return -1;
2753 }
2754
Jeff Brown13f00f02014-10-31 14:45:50 -07002755 if (isValidGlobalKey(keyCode)
2756 && mGlobalKeyManager.handleGlobalKey(mContext, keyCode, event)) {
Justin Kohd378ad72013-04-01 12:18:26 -07002757 return -1;
2758 }
2759
Michael Wright6a62e552014-06-03 19:19:48 -07002760 // Reserve all the META modifier combos for system behavior
Michael Wrightce0c13a2014-07-30 10:49:21 -07002761 if ((metaState & KeyEvent.META_META_ON) != 0) {
Michael Wright6a62e552014-06-03 19:19:48 -07002762 return -1;
2763 }
2764
Jeff Brown68b909d2011-12-07 16:36:01 -08002765 // Let the application handle the key.
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002766 return 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002767 }
2768
Jeff Brown3915bb82010-11-05 15:02:16 -07002769 /** {@inheritDoc} */
2770 @Override
Jeff Brown49ed71d2010-12-06 17:13:33 -08002771 public KeyEvent dispatchUnhandledKey(WindowState win, KeyEvent event, int policyFlags) {
Jeff Brown54875002011-04-06 15:33:01 -07002772 // Note: This method is only called if the initial down was unhandled.
Jeff Brown40013652012-05-16 21:22:36 -07002773 if (DEBUG_INPUT) {
Jeff Brown1f245102010-11-18 20:53:46 -08002774 Slog.d(TAG, "Unhandled key: win=" + win + ", action=" + event.getAction()
2775 + ", flags=" + event.getFlags()
2776 + ", keyCode=" + event.getKeyCode()
2777 + ", scanCode=" + event.getScanCode()
2778 + ", metaState=" + event.getMetaState()
2779 + ", repeatCount=" + event.getRepeatCount()
2780 + ", policyFlags=" + policyFlags);
Jeff Brown3915bb82010-11-05 15:02:16 -07002781 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08002782
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002783 KeyEvent fallbackEvent = null;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002784 if ((event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
2785 final KeyCharacterMap kcm = event.getKeyCharacterMap();
Jeff Brownc1fb48d2010-12-08 16:52:09 -08002786 final int keyCode = event.getKeyCode();
2787 final int metaState = event.getMetaState();
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002788 final boolean initialDown = event.getAction() == KeyEvent.ACTION_DOWN
2789 && event.getRepeatCount() == 0;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002790
Jeff Brown54875002011-04-06 15:33:01 -07002791 // Check for fallback actions specified by the key character map.
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002792 final FallbackAction fallbackAction;
2793 if (initialDown) {
2794 fallbackAction = kcm.getFallbackAction(keyCode, metaState);
2795 } else {
2796 fallbackAction = mFallbackActions.get(keyCode);
2797 }
2798
2799 if (fallbackAction != null) {
Jeff Brown40013652012-05-16 21:22:36 -07002800 if (DEBUG_INPUT) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002801 Slog.d(TAG, "Fallback: keyCode=" + fallbackAction.keyCode
2802 + " metaState=" + Integer.toHexString(fallbackAction.metaState));
Jeff Brown49ed71d2010-12-06 17:13:33 -08002803 }
2804
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002805 final int flags = event.getFlags() | KeyEvent.FLAG_FALLBACK;
2806 fallbackEvent = KeyEvent.obtain(
Jeff Brown49ed71d2010-12-06 17:13:33 -08002807 event.getDownTime(), event.getEventTime(),
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002808 event.getAction(), fallbackAction.keyCode,
2809 event.getRepeatCount(), fallbackAction.metaState,
Jeff Brown49ed71d2010-12-06 17:13:33 -08002810 event.getDeviceId(), event.getScanCode(),
2811 flags, event.getSource(), null);
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002812
2813 if (!interceptFallback(win, fallbackEvent, policyFlags)) {
2814 fallbackEvent.recycle();
2815 fallbackEvent = null;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002816 }
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002817
2818 if (initialDown) {
2819 mFallbackActions.put(keyCode, fallbackAction);
2820 } else if (event.getAction() == KeyEvent.ACTION_UP) {
2821 mFallbackActions.remove(keyCode);
2822 fallbackAction.recycle();
2823 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08002824 }
2825 }
2826
Jeff Brown40013652012-05-16 21:22:36 -07002827 if (DEBUG_INPUT) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002828 if (fallbackEvent == null) {
2829 Slog.d(TAG, "No fallback.");
2830 } else {
2831 Slog.d(TAG, "Performing fallback: " + fallbackEvent);
2832 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08002833 }
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002834 return fallbackEvent;
Jeff Brown3915bb82010-11-05 15:02:16 -07002835 }
2836
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002837 private boolean interceptFallback(WindowState win, KeyEvent fallbackEvent, int policyFlags) {
Jeff Brown037c33e2014-04-09 00:31:55 -07002838 int actions = interceptKeyBeforeQueueing(fallbackEvent, policyFlags);
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002839 if ((actions & ACTION_PASS_TO_USER) != 0) {
2840 long delayMillis = interceptKeyBeforeDispatching(
2841 win, fallbackEvent, policyFlags);
2842 if (delayMillis == 0) {
2843 return true;
2844 }
2845 }
2846 return false;
Jeff Brown6f2fba42011-02-19 01:08:02 -08002847 }
2848
Jeff Brownde7a8ea2012-06-13 18:28:57 -07002849 private void launchAssistLongPressAction() {
2850 performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false);
2851 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_ASSIST);
2852
2853 // launch the search activity
2854 Intent intent = new Intent(Intent.ACTION_SEARCH_LONG_PRESS);
2855 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2856 try {
RoboErik8a2cfc32014-05-16 11:19:38 -07002857 // TODO: This only stops the factory-installed search manager.
Jim Miller45308b12012-06-18 19:23:39 -07002858 // Need to formalize an API to handle others
Jeff Brownde7a8ea2012-06-13 18:28:57 -07002859 SearchManager searchManager = getSearchManager();
2860 if (searchManager != null) {
2861 searchManager.stopSearch();
2862 }
Michael Wright43e27f72013-04-10 14:06:48 -07002863 mContext.startActivityAsUser(intent, UserHandle.CURRENT);
Jeff Brownde7a8ea2012-06-13 18:28:57 -07002864 } catch (ActivityNotFoundException e) {
2865 Slog.w(TAG, "No activity to handle assist long press action.", e);
2866 }
2867 }
2868
2869 private void launchAssistAction() {
Michael Wright8ab940a2014-09-01 11:01:27 -07002870 launchAssistAction(null);
2871 }
2872
2873 private void launchAssistAction(String hint) {
Jeff Brownde7a8ea2012-06-13 18:28:57 -07002874 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_ASSIST);
Amith Yamasanic1d07a42012-08-14 09:32:02 -07002875 Intent intent = ((SearchManager) mContext.getSystemService(Context.SEARCH_SERVICE))
Dianne Hackbornf9c5e0f2013-01-23 14:39:13 -08002876 .getAssistIntent(mContext, true, UserHandle.USER_CURRENT);
Jim Miller45308b12012-06-18 19:23:39 -07002877 if (intent != null) {
Michael Wright8ab940a2014-09-01 11:01:27 -07002878 if (hint != null) {
2879 intent.putExtra(hint, true);
2880 }
Jim Miller45308b12012-06-18 19:23:39 -07002881 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
2882 | Intent.FLAG_ACTIVITY_SINGLE_TOP
2883 | Intent.FLAG_ACTIVITY_CLEAR_TOP);
2884 try {
Michael Wright43e27f72013-04-10 14:06:48 -07002885 mContext.startActivityAsUser(intent, UserHandle.CURRENT);
Jim Miller45308b12012-06-18 19:23:39 -07002886 } catch (ActivityNotFoundException e) {
2887 Slog.w(TAG, "No activity to handle assist action.", e);
Jeff Brownde7a8ea2012-06-13 18:28:57 -07002888 }
2889 }
2890 }
2891
2892 private SearchManager getSearchManager() {
2893 if (mSearchManager == null) {
2894 mSearchManager = (SearchManager) mContext.getSystemService(Context.SEARCH_SERVICE);
2895 }
2896 return mSearchManager;
2897 }
2898
Jeff Browncaca8812013-05-09 13:34:33 -07002899 private void preloadRecentApps() {
2900 mPreloadedRecentApps = true;
2901 try {
2902 IStatusBarService statusbar = getStatusBarService();
2903 if (statusbar != null) {
2904 statusbar.preloadRecentApps();
2905 }
2906 } catch (RemoteException e) {
2907 Slog.e(TAG, "RemoteException when preloading recent apps", e);
2908 // re-acquire status bar service next time it is needed.
2909 mStatusBarService = null;
2910 }
2911 }
2912
2913 private void cancelPreloadRecentApps() {
2914 if (mPreloadedRecentApps) {
2915 mPreloadedRecentApps = false;
2916 try {
2917 IStatusBarService statusbar = getStatusBarService();
2918 if (statusbar != null) {
2919 statusbar.cancelPreloadRecentApps();
2920 }
2921 } catch (RemoteException e) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07002922 Slog.e(TAG, "RemoteException when cancelling recent apps preload", e);
Jeff Browncaca8812013-05-09 13:34:33 -07002923 // re-acquire status bar service next time it is needed.
2924 mStatusBarService = null;
2925 }
2926 }
2927 }
2928
2929 private void toggleRecentApps() {
2930 mPreloadedRecentApps = false; // preloading no longer needs to be canceled
Jeff Browncaca8812013-05-09 13:34:33 -07002931 try {
2932 IStatusBarService statusbar = getStatusBarService();
2933 if (statusbar != null) {
2934 statusbar.toggleRecentApps();
2935 }
2936 } catch (RemoteException e) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07002937 Slog.e(TAG, "RemoteException when toggling recent apps", e);
2938 // re-acquire status bar service next time it is needed.
2939 mStatusBarService = null;
2940 }
2941 }
2942
Craig Mautner84984fa2014-06-19 11:19:20 -07002943 @Override
2944 public void showRecentApps() {
2945 mHandler.removeMessages(MSG_DISPATCH_SHOW_RECENTS);
2946 mHandler.sendEmptyMessage(MSG_DISPATCH_SHOW_RECENTS);
2947 }
2948
Winson Chung1e8d71b2014-05-16 17:05:22 -07002949 private void showRecentApps(boolean triggeredFromAltTab) {
2950 mPreloadedRecentApps = false; // preloading no longer needs to be canceled
2951 try {
2952 IStatusBarService statusbar = getStatusBarService();
2953 if (statusbar != null) {
2954 statusbar.showRecentApps(triggeredFromAltTab);
2955 }
2956 } catch (RemoteException e) {
Jeff Browncaca8812013-05-09 13:34:33 -07002957 Slog.e(TAG, "RemoteException when showing recent apps", e);
2958 // re-acquire status bar service next time it is needed.
2959 mStatusBarService = null;
2960 }
2961 }
2962
Winson Chungcdcd4872014-08-05 18:00:13 -07002963 private void hideRecentApps(boolean triggeredFromAltTab, boolean triggeredFromHome) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07002964 mPreloadedRecentApps = false; // preloading no longer needs to be canceled
2965 try {
2966 IStatusBarService statusbar = getStatusBarService();
2967 if (statusbar != null) {
Winson Chungcdcd4872014-08-05 18:00:13 -07002968 statusbar.hideRecentApps(triggeredFromAltTab, triggeredFromHome);
Winson Chung1e8d71b2014-05-16 17:05:22 -07002969 }
2970 } catch (RemoteException e) {
2971 Slog.e(TAG, "RemoteException when closing recent apps", e);
2972 // re-acquire status bar service next time it is needed.
2973 mStatusBarService = null;
2974 }
2975 }
2976
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002977 /**
2978 * A home key -> launch home action was detected. Take the appropriate action
2979 * given the situation with the keyguard.
2980 */
2981 void launchHomeFromHotKey() {
Jim Millerab954542014-10-10 18:21:49 -07002982 if (isKeyguardShowingAndNotOccluded()) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002983 // don't launch home if keyguard showing
Jim Miller5ecd8112013-01-09 18:50:26 -08002984 } else if (!mHideLockScreen && mKeyguardDelegate.isInputRestricted()) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002985 // when in keyguard restricted mode, must first verify unlock
2986 // before launching home
Jim Miller5ecd8112013-01-09 18:50:26 -08002987 mKeyguardDelegate.verifyUnlock(new OnKeyguardExitResult() {
Jose Lima9546b202014-07-02 17:21:51 -07002988 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002989 public void onKeyguardExitResult(boolean success) {
2990 if (success) {
Dianne Hackborn256dd3b2009-05-19 18:51:21 -07002991 try {
2992 ActivityManagerNative.getDefault().stopAppSwitches();
2993 } catch (RemoteException e) {
2994 }
Joe Onoratof275f0c2009-11-24 16:11:13 -05002995 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_HOME_KEY);
Bryce Lee01b0c5f2015-02-05 18:24:04 -08002996 startDockOrHome(true /*fromHomeKey*/);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002997 }
2998 }
2999 });
3000 } else {
3001 // no keyguard stuff to worry about, just launch home!
Dianne Hackborn256dd3b2009-05-19 18:51:21 -07003002 try {
3003 ActivityManagerNative.getDefault().stopAppSwitches();
3004 } catch (RemoteException e) {
3005 }
Winson Chungd543c1b2014-06-23 15:06:45 -07003006 if (mRecentsVisible) {
3007 // Hide Recents and notify it to launch Home
3008 awakenDreams();
3009 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_HOME_KEY);
Winson Chungcdcd4872014-08-05 18:00:13 -07003010 hideRecentApps(false, true);
Winson Chungd543c1b2014-06-23 15:06:45 -07003011 } else {
3012 // Otherwise, just launch Home
3013 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_HOME_KEY);
Bryce Lee01b0c5f2015-02-05 18:24:04 -08003014 startDockOrHome(true /*fromHomeKey*/);
Winson Chungd543c1b2014-06-23 15:06:45 -07003015 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003016 }
3017 }
3018
John Spurlock04db1762013-05-13 12:46:41 -04003019 private final Runnable mClearHideNavigationFlag = new Runnable() {
3020 @Override
3021 public void run() {
3022 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
3023 // Clear flags.
3024 mForceClearedSystemUiFlags &=
3025 ~View.SYSTEM_UI_FLAG_HIDE_NAVIGATION;
3026 }
3027 mWindowManagerFuncs.reevaluateStatusBarVisibility();
Dianne Hackborne26ab702011-10-16 13:21:33 -07003028 }
3029 };
3030
3031 /**
3032 * Input handler used while nav bar is hidden. Captures any touch on the screen,
3033 * to determine when the nav bar should be shown and prevent applications from
3034 * receiving those touches.
3035 */
Jeff Brown32cbc38552011-12-01 14:01:49 -08003036 final class HideNavInputEventReceiver extends InputEventReceiver {
3037 public HideNavInputEventReceiver(InputChannel inputChannel, Looper looper) {
3038 super(inputChannel, looper);
3039 }
3040
Dianne Hackborndf89e652011-10-06 22:35:11 -07003041 @Override
Jeff Brown32cbc38552011-12-01 14:01:49 -08003042 public void onInputEvent(InputEvent event) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07003043 boolean handled = false;
3044 try {
Jeff Brown4952dfd2011-11-30 19:23:22 -08003045 if (event instanceof MotionEvent
3046 && (event.getSource() & InputDevice.SOURCE_CLASS_POINTER) != 0) {
3047 final MotionEvent motionEvent = (MotionEvent)event;
3048 if (motionEvent.getAction() == MotionEvent.ACTION_DOWN) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07003049 // When the user taps down, we re-show the nav bar.
3050 boolean changed = false;
John Spurlock04db1762013-05-13 12:46:41 -04003051 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003052 // Any user activity always causes us to show the
3053 // navigation controls, if they had been hidden.
3054 // We also clear the low profile and only content
3055 // flags so that tapping on the screen will atomically
3056 // restore all currently hidden screen decorations.
3057 int newVal = mResettingSystemUiFlags |
3058 View.SYSTEM_UI_FLAG_HIDE_NAVIGATION |
3059 View.SYSTEM_UI_FLAG_LOW_PROFILE |
3060 View.SYSTEM_UI_FLAG_FULLSCREEN;
Dianne Hackborne26ab702011-10-16 13:21:33 -07003061 if (mResettingSystemUiFlags != newVal) {
3062 mResettingSystemUiFlags = newVal;
Dianne Hackborndf89e652011-10-06 22:35:11 -07003063 changed = true;
3064 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07003065 // We don't allow the system's nav bar to be hidden
3066 // again for 1 second, to prevent applications from
3067 // spamming us and keeping it from being shown.
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003068 newVal = mForceClearedSystemUiFlags |
3069 View.SYSTEM_UI_FLAG_HIDE_NAVIGATION;
Dianne Hackborne26ab702011-10-16 13:21:33 -07003070 if (mForceClearedSystemUiFlags != newVal) {
3071 mForceClearedSystemUiFlags = newVal;
3072 changed = true;
John Spurlock04db1762013-05-13 12:46:41 -04003073 mHandler.postDelayed(mClearHideNavigationFlag, 1000);
Dianne Hackborne26ab702011-10-16 13:21:33 -07003074 }
Dianne Hackborndf89e652011-10-06 22:35:11 -07003075 }
3076 if (changed) {
3077 mWindowManagerFuncs.reevaluateStatusBarVisibility();
3078 }
3079 }
3080 }
3081 } finally {
Jeff Brown32cbc38552011-12-01 14:01:49 -08003082 finishInputEvent(event, handled);
Dianne Hackborndf89e652011-10-06 22:35:11 -07003083 }
3084 }
Jeff Brown32cbc38552011-12-01 14:01:49 -08003085 }
3086 final InputEventReceiver.Factory mHideNavInputEventReceiverFactory =
3087 new InputEventReceiver.Factory() {
3088 @Override
3089 public InputEventReceiver createInputEventReceiver(
3090 InputChannel inputChannel, Looper looper) {
3091 return new HideNavInputEventReceiver(inputChannel, looper);
3092 }
Dianne Hackborndf89e652011-10-06 22:35:11 -07003093 };
3094
3095 @Override
3096 public int adjustSystemUiVisibilityLw(int visibility) {
John Spurlock5b9145b2013-08-20 15:13:47 -04003097 mStatusBarController.adjustSystemUiVisibilityLw(mLastSystemUiFlags, visibility);
3098 mNavigationBarController.adjustSystemUiVisibilityLw(mLastSystemUiFlags, visibility);
Winson Chungd42a6cf2014-06-03 16:24:04 -07003099 mRecentsVisible = (visibility & View.RECENT_APPS_VISIBLE) > 0;
John Spurlock27735a42013-08-14 17:57:38 -04003100
Dianne Hackborndf89e652011-10-06 22:35:11 -07003101 // Reset any bits in mForceClearingStatusBarVisibility that
3102 // are now clear.
Dianne Hackborne26ab702011-10-16 13:21:33 -07003103 mResettingSystemUiFlags &= visibility;
Dianne Hackborndf89e652011-10-06 22:35:11 -07003104 // Clear any bits in the new visibility that are currently being
3105 // force cleared, before reporting it.
Dianne Hackborne26ab702011-10-16 13:21:33 -07003106 return visibility & ~mResettingSystemUiFlags
3107 & ~mForceClearedSystemUiFlags;
Dianne Hackborndf89e652011-10-06 22:35:11 -07003108 }
3109
Craig Mautner69b08182012-09-05 13:07:13 -07003110 @Override
Adrian Roos37d7a682014-11-06 18:15:16 +01003111 public void getInsetHintLw(WindowManager.LayoutParams attrs, Rect outContentInsets,
3112 Rect outStableInsets) {
John Spurlockc6d1c602014-01-17 15:22:06 -05003113 final int fl = PolicyControl.getWindowFlags(null, attrs);
John Spurlock1db8b682014-02-18 11:18:59 -05003114 final int sysuiVis = PolicyControl.getSystemUiVisibility(null, attrs);
3115 final int systemUiVisibility = (sysuiVis | attrs.subtreeSystemUiVisibility);
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003116
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003117 if ((fl & (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR))
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003118 == (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR)) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003119 int availRight, availBottom;
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07003120 if (canHideNavigationBar() &&
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003121 (systemUiVisibility & View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION) != 0) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003122 availRight = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3123 availBottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
3124 } else {
3125 availRight = mRestrictedScreenLeft + mRestrictedScreenWidth;
3126 availBottom = mRestrictedScreenTop + mRestrictedScreenHeight;
3127 }
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003128 if ((systemUiVisibility & View.SYSTEM_UI_FLAG_LAYOUT_STABLE) != 0) {
3129 if ((fl & FLAG_FULLSCREEN) != 0) {
Adrian Roos37d7a682014-11-06 18:15:16 +01003130 outContentInsets.set(mStableFullscreenLeft, mStableFullscreenTop,
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003131 availRight - mStableFullscreenRight,
3132 availBottom - mStableFullscreenBottom);
3133 } else {
Adrian Roos37d7a682014-11-06 18:15:16 +01003134 outContentInsets.set(mStableLeft, mStableTop,
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003135 availRight - mStableRight, availBottom - mStableBottom);
3136 }
Dianne Hackbornc652de82013-02-15 16:32:56 -08003137 } else if ((fl & FLAG_FULLSCREEN) != 0 || (fl & FLAG_LAYOUT_IN_OVERSCAN) != 0) {
Adrian Roos37d7a682014-11-06 18:15:16 +01003138 outContentInsets.setEmpty();
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003139 } else if ((systemUiVisibility & (View.SYSTEM_UI_FLAG_FULLSCREEN
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003140 | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN)) == 0) {
Adrian Roos37d7a682014-11-06 18:15:16 +01003141 outContentInsets.set(mCurLeft, mCurTop,
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003142 availRight - mCurRight, availBottom - mCurBottom);
3143 } else {
Adrian Roos37d7a682014-11-06 18:15:16 +01003144 outContentInsets.set(mCurLeft, mCurTop,
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003145 availRight - mCurRight, availBottom - mCurBottom);
3146 }
Adrian Roos37d7a682014-11-06 18:15:16 +01003147
3148 outStableInsets.set(mStableLeft, mStableTop,
3149 availRight - mStableRight, availBottom - mStableBottom);
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003150 return;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003151 }
Adrian Roos37d7a682014-11-06 18:15:16 +01003152 outContentInsets.setEmpty();
3153 outStableInsets.setEmpty();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003154 }
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003155
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003156 /** {@inheritDoc} */
Craig Mautner69b08182012-09-05 13:07:13 -07003157 @Override
3158 public void beginLayoutLw(boolean isDefaultDisplay, int displayWidth, int displayHeight,
3159 int displayRotation) {
Dianne Hackbornc652de82013-02-15 16:32:56 -08003160 final int overscanLeft, overscanTop, overscanRight, overscanBottom;
3161 if (isDefaultDisplay) {
3162 switch (displayRotation) {
3163 case Surface.ROTATION_90:
3164 overscanLeft = mOverscanTop;
3165 overscanTop = mOverscanRight;
3166 overscanRight = mOverscanBottom;
3167 overscanBottom = mOverscanLeft;
3168 break;
3169 case Surface.ROTATION_180:
3170 overscanLeft = mOverscanRight;
3171 overscanTop = mOverscanBottom;
3172 overscanRight = mOverscanLeft;
3173 overscanBottom = mOverscanTop;
3174 break;
3175 case Surface.ROTATION_270:
3176 overscanLeft = mOverscanBottom;
3177 overscanTop = mOverscanLeft;
3178 overscanRight = mOverscanTop;
3179 overscanBottom = mOverscanRight;
3180 break;
3181 default:
3182 overscanLeft = mOverscanLeft;
3183 overscanTop = mOverscanTop;
3184 overscanRight = mOverscanRight;
3185 overscanBottom = mOverscanBottom;
3186 break;
3187 }
3188 } else {
3189 overscanLeft = 0;
3190 overscanTop = 0;
3191 overscanRight = 0;
3192 overscanBottom = 0;
3193 }
Dianne Hackborn313440842013-02-19 19:22:59 -08003194 mOverscanScreenLeft = mRestrictedOverscanScreenLeft = 0;
3195 mOverscanScreenTop = mRestrictedOverscanScreenTop = 0;
3196 mOverscanScreenWidth = mRestrictedOverscanScreenWidth = displayWidth;
3197 mOverscanScreenHeight = mRestrictedOverscanScreenHeight = displayHeight;
Dianne Hackbornc652de82013-02-15 16:32:56 -08003198 mSystemLeft = 0;
3199 mSystemTop = 0;
3200 mSystemRight = displayWidth;
3201 mSystemBottom = displayHeight;
3202 mUnrestrictedScreenLeft = overscanLeft;
3203 mUnrestrictedScreenTop = overscanTop;
3204 mUnrestrictedScreenWidth = displayWidth - overscanLeft - overscanRight;
3205 mUnrestrictedScreenHeight = displayHeight - overscanTop - overscanBottom;
3206 mRestrictedScreenLeft = mUnrestrictedScreenLeft;
3207 mRestrictedScreenTop = mUnrestrictedScreenTop;
John Spurlockad3e6cb2013-04-30 08:47:43 -04003208 mRestrictedScreenWidth = mSystemGestures.screenWidth = mUnrestrictedScreenWidth;
3209 mRestrictedScreenHeight = mSystemGestures.screenHeight = mUnrestrictedScreenHeight;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003210 mDockLeft = mContentLeft = mVoiceContentLeft = mStableLeft = mStableFullscreenLeft
Dianne Hackbornc652de82013-02-15 16:32:56 -08003211 = mCurLeft = mUnrestrictedScreenLeft;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003212 mDockTop = mContentTop = mVoiceContentTop = mStableTop = mStableFullscreenTop
Dianne Hackbornc652de82013-02-15 16:32:56 -08003213 = mCurTop = mUnrestrictedScreenTop;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003214 mDockRight = mContentRight = mVoiceContentRight = mStableRight = mStableFullscreenRight
Dianne Hackbornc652de82013-02-15 16:32:56 -08003215 = mCurRight = displayWidth - overscanRight;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003216 mDockBottom = mContentBottom = mVoiceContentBottom = mStableBottom = mStableFullscreenBottom
Dianne Hackbornc652de82013-02-15 16:32:56 -08003217 = mCurBottom = displayHeight - overscanBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003218 mDockLayer = 0x10000000;
Dianne Hackborn5c58de32012-04-28 19:52:37 -07003219 mStatusBarLayer = -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003220
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003221 // start with the current dock rect, which will be (0,0,displayWidth,displayHeight)
3222 final Rect pf = mTmpParentFrame;
3223 final Rect df = mTmpDisplayFrame;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003224 final Rect of = mTmpOverscanFrame;
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003225 final Rect vf = mTmpVisibleFrame;
John Spurlock46646232013-09-30 22:32:42 -04003226 final Rect dcf = mTmpDecorFrame;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003227 pf.left = df.left = of.left = vf.left = mDockLeft;
3228 pf.top = df.top = of.top = vf.top = mDockTop;
3229 pf.right = df.right = of.right = vf.right = mDockRight;
3230 pf.bottom = df.bottom = of.bottom = vf.bottom = mDockBottom;
John Spurlock46646232013-09-30 22:32:42 -04003231 dcf.setEmpty(); // Decor frame N/A for system bars.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003232
Craig Mautner69b08182012-09-05 13:07:13 -07003233 if (isDefaultDisplay) {
3234 // For purposes of putting out fake window up to steal focus, we will
3235 // drive nav being hidden only by whether it is requested.
John Spurlocke1f366f2013-08-05 12:22:40 -04003236 final int sysui = mLastSystemUiFlags;
3237 boolean navVisible = (sysui & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) == 0;
Adrian Roosea562512014-05-05 13:33:03 +02003238 boolean navTranslucent = (sysui
3239 & (View.NAVIGATION_BAR_TRANSLUCENT | View.SYSTEM_UI_TRANSPARENT)) != 0;
John Spurlockf1a36642013-10-12 17:50:42 -04003240 boolean immersive = (sysui & View.SYSTEM_UI_FLAG_IMMERSIVE) != 0;
3241 boolean immersiveSticky = (sysui & View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY) != 0;
3242 boolean navAllowedHidden = immersive || immersiveSticky;
3243 navTranslucent &= !immersiveSticky; // transient trumps translucent
Adrian Roos4fb3ee32014-08-22 19:29:09 +02003244 boolean isKeyguardShowing = isStatusBarKeyguard() && !mHideLockScreen;
3245 if (!isKeyguardShowing) {
3246 navTranslucent &= areTranslucentBarsAllowed();
3247 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07003248
Craig Mautner69b08182012-09-05 13:07:13 -07003249 // When the navigation bar isn't visible, we put up a fake
3250 // input window to catch all touch events. This way we can
3251 // detect when the user presses anywhere to bring back the nav
3252 // bar and ensure the application doesn't see the event.
John Spurlockf1a36642013-10-12 17:50:42 -04003253 if (navVisible || navAllowedHidden) {
Craig Mautner69b08182012-09-05 13:07:13 -07003254 if (mHideNavFakeWindow != null) {
3255 mHideNavFakeWindow.dismiss();
3256 mHideNavFakeWindow = null;
3257 }
3258 } else if (mHideNavFakeWindow == null) {
3259 mHideNavFakeWindow = mWindowManagerFuncs.addFakeWindow(
3260 mHandler.getLooper(), mHideNavInputEventReceiverFactory,
Adam Lesinski95c42972013-10-02 10:13:27 -07003261 "hidden nav", WindowManager.LayoutParams.TYPE_HIDDEN_NAV_CONSUMER, 0,
Craig Mautner69b08182012-09-05 13:07:13 -07003262 0, false, false, true);
Dianne Hackborne26ab702011-10-16 13:21:33 -07003263 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07003264
Craig Mautner69b08182012-09-05 13:07:13 -07003265 // For purposes of positioning and showing the nav bar, if we have
3266 // decided that it can't be hidden (because of the screen aspect ratio),
3267 // then take that into account.
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07003268 navVisible |= !canHideNavigationBar();
Dianne Hackbornf87d1962012-04-04 12:48:24 -07003269
John Spurlockad3e6cb2013-04-30 08:47:43 -04003270 boolean updateSysUiVisibility = false;
Craig Mautner69b08182012-09-05 13:07:13 -07003271 if (mNavigationBar != null) {
John Spurlock27735a42013-08-14 17:57:38 -04003272 boolean transientNavBarShowing = mNavigationBarController.isTransientShowing();
Craig Mautner69b08182012-09-05 13:07:13 -07003273 // Force the navigation bar to its appropriate place and
3274 // size. We need to do this directly, instead of relying on
3275 // it to bubble up from the nav bar, because this needs to
3276 // change atomically with screen rotations.
3277 mNavigationBarOnBottom = (!mNavigationBarCanMove || displayWidth < displayHeight);
3278 if (mNavigationBarOnBottom) {
3279 // It's a system nav bar or a portrait screen; nav bar goes on bottom.
Dianne Hackbornc652de82013-02-15 16:32:56 -08003280 int top = displayHeight - overscanBottom
3281 - mNavigationBarHeightForRotation[displayRotation];
3282 mTmpNavigationFrame.set(0, top, displayWidth, displayHeight - overscanBottom);
Craig Mautner69b08182012-09-05 13:07:13 -07003283 mStableBottom = mStableFullscreenBottom = mTmpNavigationFrame.top;
John Spurlockf95b89a2013-10-10 22:10:42 -04003284 if (transientNavBarShowing) {
John Spurlock27735a42013-08-14 17:57:38 -04003285 mNavigationBarController.setBarShowingLw(true);
John Spurlockad3e6cb2013-04-30 08:47:43 -04003286 } else if (navVisible) {
John Spurlock27735a42013-08-14 17:57:38 -04003287 mNavigationBarController.setBarShowingLw(true);
Craig Mautner69b08182012-09-05 13:07:13 -07003288 mDockBottom = mTmpNavigationFrame.top;
Dianne Hackborn313440842013-02-19 19:22:59 -08003289 mRestrictedScreenHeight = mDockBottom - mRestrictedScreenTop;
3290 mRestrictedOverscanScreenHeight = mDockBottom - mRestrictedOverscanScreenTop;
Craig Mautner69b08182012-09-05 13:07:13 -07003291 } else {
3292 // We currently want to hide the navigation UI.
John Spurlock27735a42013-08-14 17:57:38 -04003293 mNavigationBarController.setBarShowingLw(false);
Craig Mautner69b08182012-09-05 13:07:13 -07003294 }
John Spurlockc6d1c602014-01-17 15:22:06 -05003295 if (navVisible && !navTranslucent && !navAllowedHidden
3296 && !mNavigationBar.isAnimatingLw()
John Spurlockbd957402013-10-03 11:38:39 -04003297 && !mNavigationBarController.wasRecentlyTranslucent()) {
John Spurlocke1f366f2013-08-05 12:22:40 -04003298 // If the opaque nav bar is currently requested to be visible,
Craig Mautner69b08182012-09-05 13:07:13 -07003299 // and not in the process of animating on or off, then
3300 // we can tell the app that it is covered by it.
3301 mSystemBottom = mTmpNavigationFrame.top;
3302 }
Dianne Hackbornf87d1962012-04-04 12:48:24 -07003303 } else {
Craig Mautner69b08182012-09-05 13:07:13 -07003304 // Landscape screen; nav bar goes to the right.
Dianne Hackbornc652de82013-02-15 16:32:56 -08003305 int left = displayWidth - overscanRight
3306 - mNavigationBarWidthForRotation[displayRotation];
3307 mTmpNavigationFrame.set(left, 0, displayWidth - overscanRight, displayHeight);
Craig Mautner69b08182012-09-05 13:07:13 -07003308 mStableRight = mStableFullscreenRight = mTmpNavigationFrame.left;
John Spurlockf95b89a2013-10-10 22:10:42 -04003309 if (transientNavBarShowing) {
John Spurlock27735a42013-08-14 17:57:38 -04003310 mNavigationBarController.setBarShowingLw(true);
John Spurlockad3e6cb2013-04-30 08:47:43 -04003311 } else if (navVisible) {
John Spurlock27735a42013-08-14 17:57:38 -04003312 mNavigationBarController.setBarShowingLw(true);
Craig Mautner69b08182012-09-05 13:07:13 -07003313 mDockRight = mTmpNavigationFrame.left;
Dianne Hackborn313440842013-02-19 19:22:59 -08003314 mRestrictedScreenWidth = mDockRight - mRestrictedScreenLeft;
3315 mRestrictedOverscanScreenWidth = mDockRight - mRestrictedOverscanScreenLeft;
Craig Mautner69b08182012-09-05 13:07:13 -07003316 } else {
3317 // We currently want to hide the navigation UI.
John Spurlock27735a42013-08-14 17:57:38 -04003318 mNavigationBarController.setBarShowingLw(false);
Craig Mautner69b08182012-09-05 13:07:13 -07003319 }
John Spurlockbd957402013-10-03 11:38:39 -04003320 if (navVisible && !navTranslucent && !mNavigationBar.isAnimatingLw()
3321 && !mNavigationBarController.wasRecentlyTranslucent()) {
Craig Mautner69b08182012-09-05 13:07:13 -07003322 // If the nav bar is currently requested to be visible,
3323 // and not in the process of animating on or off, then
3324 // we can tell the app that it is covered by it.
3325 mSystemRight = mTmpNavigationFrame.left;
3326 }
Dianne Hackbornf87d1962012-04-04 12:48:24 -07003327 }
Craig Mautner69b08182012-09-05 13:07:13 -07003328 // Make sure the content and current rectangles are updated to
3329 // account for the restrictions from the navigation bar.
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003330 mContentTop = mVoiceContentTop = mCurTop = mDockTop;
3331 mContentBottom = mVoiceContentBottom = mCurBottom = mDockBottom;
3332 mContentLeft = mVoiceContentLeft = mCurLeft = mDockLeft;
3333 mContentRight = mVoiceContentRight = mCurRight = mDockRight;
Craig Mautner69b08182012-09-05 13:07:13 -07003334 mStatusBarLayer = mNavigationBar.getSurfaceLayer();
3335 // And compute the final frame.
3336 mNavigationBar.computeFrameLw(mTmpNavigationFrame, mTmpNavigationFrame,
Adrian Roosfa104232014-06-20 16:10:14 -07003337 mTmpNavigationFrame, mTmpNavigationFrame, mTmpNavigationFrame, dcf,
3338 mTmpNavigationFrame);
Craig Mautnereda67292013-04-28 13:50:14 -07003339 if (DEBUG_LAYOUT) Slog.i(TAG, "mNavigationBar frame: " + mTmpNavigationFrame);
John Spurlock27735a42013-08-14 17:57:38 -04003340 if (mNavigationBarController.checkHiddenLw()) {
John Spurlockad3e6cb2013-04-30 08:47:43 -04003341 updateSysUiVisibility = true;
3342 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003343 }
Craig Mautnereda67292013-04-28 13:50:14 -07003344 if (DEBUG_LAYOUT) Slog.i(TAG, String.format("mDock rect: (%d,%d - %d,%d)",
Craig Mautner69b08182012-09-05 13:07:13 -07003345 mDockLeft, mDockTop, mDockRight, mDockBottom));
3346
3347 // decide where the status bar goes ahead of time
3348 if (mStatusBar != null) {
3349 // apply any navigation bar insets
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003350 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
3351 pf.top = df.top = of.top = mUnrestrictedScreenTop;
3352 pf.right = df.right = of.right = mUnrestrictedScreenWidth + mUnrestrictedScreenLeft;
3353 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenHeight
3354 + mUnrestrictedScreenTop;
Craig Mautner69b08182012-09-05 13:07:13 -07003355 vf.left = mStableLeft;
3356 vf.top = mStableTop;
3357 vf.right = mStableRight;
3358 vf.bottom = mStableBottom;
3359
3360 mStatusBarLayer = mStatusBar.getSurfaceLayer();
3361
3362 // Let the status bar determine its size.
Adrian Roosfa104232014-06-20 16:10:14 -07003363 mStatusBar.computeFrameLw(pf, df, vf, vf, vf, dcf, vf);
Craig Mautner69b08182012-09-05 13:07:13 -07003364
3365 // For layout, the status bar is always at the top with our fixed height.
3366 mStableTop = mUnrestrictedScreenTop + mStatusBarHeight;
3367
John Spurlocke1f366f2013-08-05 12:22:40 -04003368 boolean statusBarTransient = (sysui & View.STATUS_BAR_TRANSIENT) != 0;
Adrian Roosea562512014-05-05 13:33:03 +02003369 boolean statusBarTranslucent = (sysui
3370 & (View.STATUS_BAR_TRANSLUCENT | View.SYSTEM_UI_TRANSPARENT)) != 0;
Adrian Roos4fb3ee32014-08-22 19:29:09 +02003371 if (!isKeyguardShowing) {
3372 statusBarTranslucent &= areTranslucentBarsAllowed();
3373 }
John Spurlock32beb2c2013-03-11 10:16:47 -04003374
Craig Mautner69b08182012-09-05 13:07:13 -07003375 // If the status bar is hidden, we don't want to cause
3376 // windows behind it to scroll.
John Spurlockeda1f692013-09-16 11:38:44 -04003377 if (mStatusBar.isVisibleLw() && !statusBarTransient) {
Craig Mautner69b08182012-09-05 13:07:13 -07003378 // Status bar may go away, so the screen area it occupies
3379 // is available to apps but just covering them when the
3380 // status bar is visible.
3381 mDockTop = mUnrestrictedScreenTop + mStatusBarHeight;
3382
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003383 mContentTop = mVoiceContentTop = mCurTop = mDockTop;
3384 mContentBottom = mVoiceContentBottom = mCurBottom = mDockBottom;
3385 mContentLeft = mVoiceContentLeft = mCurLeft = mDockLeft;
3386 mContentRight = mVoiceContentRight = mCurRight = mDockRight;
Craig Mautner69b08182012-09-05 13:07:13 -07003387
Craig Mautnereda67292013-04-28 13:50:14 -07003388 if (DEBUG_LAYOUT) Slog.v(TAG, "Status bar: " +
Craig Mautner69b08182012-09-05 13:07:13 -07003389 String.format(
3390 "dock=[%d,%d][%d,%d] content=[%d,%d][%d,%d] cur=[%d,%d][%d,%d]",
3391 mDockLeft, mDockTop, mDockRight, mDockBottom,
3392 mContentLeft, mContentTop, mContentRight, mContentBottom,
3393 mCurLeft, mCurTop, mCurRight, mCurBottom));
3394 }
John Spurlocke1f366f2013-08-05 12:22:40 -04003395 if (mStatusBar.isVisibleLw() && !mStatusBar.isAnimatingLw()
John Spurlockbd957402013-10-03 11:38:39 -04003396 && !statusBarTransient && !statusBarTranslucent
3397 && !mStatusBarController.wasRecentlyTranslucent()) {
John Spurlocke1f366f2013-08-05 12:22:40 -04003398 // If the opaque status bar is currently requested to be visible,
Craig Mautner69b08182012-09-05 13:07:13 -07003399 // and not in the process of animating on or off, then
3400 // we can tell the app that it is covered by it.
3401 mSystemTop = mUnrestrictedScreenTop + mStatusBarHeight;
3402 }
John Spurlock27735a42013-08-14 17:57:38 -04003403 if (mStatusBarController.checkHiddenLw()) {
John Spurlockad3e6cb2013-04-30 08:47:43 -04003404 updateSysUiVisibility = true;
John Spurlock32beb2c2013-03-11 10:16:47 -04003405 }
Dianne Hackborn5c58de32012-04-28 19:52:37 -07003406 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04003407 if (updateSysUiVisibility) {
3408 updateSystemUiVisibilityLw();
3409 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003410 }
3411 }
3412
Dianne Hackborn85afd1b2012-05-13 13:31:06 -07003413 /** {@inheritDoc} */
Craig Mautner967212c2013-04-13 21:10:58 -07003414 @Override
John Spurlock46646232013-09-30 22:32:42 -04003415 public int getSystemDecorLayerLw() {
Dianne Hackborn85afd1b2012-05-13 13:31:06 -07003416 if (mStatusBar != null) return mStatusBar.getSurfaceLayer();
3417 if (mNavigationBar != null) return mNavigationBar.getSurfaceLayer();
3418 return 0;
3419 }
3420
Craig Mautner967212c2013-04-13 21:10:58 -07003421 @Override
3422 public void getContentRectLw(Rect r) {
3423 r.set(mContentLeft, mContentTop, mContentRight, mContentBottom);
3424 }
3425
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003426 void setAttachedWindowFrames(WindowState win, int fl, int adjust, WindowState attached,
3427 boolean insetDecors, Rect pf, Rect df, Rect of, Rect cf, Rect vf) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003428 if (win.getSurfaceLayer() > mDockLayer && attached.getSurfaceLayer() < mDockLayer) {
3429 // Here's a special case: if this attached window is a panel that is
3430 // above the dock window, and the window it is attached to is below
3431 // the dock window, then the frames we computed for the window it is
3432 // attached to can not be used because the dock is effectively part
3433 // of the underlying window and the attached window is floating on top
3434 // of the whole thing. So, we ignore the attached window and explicitly
3435 // compute the frames that would be appropriate without the dock.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003436 df.left = of.left = cf.left = vf.left = mDockLeft;
3437 df.top = of.top = cf.top = vf.top = mDockTop;
3438 df.right = of.right = cf.right = vf.right = mDockRight;
3439 df.bottom = of.bottom = cf.bottom = vf.bottom = mDockBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003440 } else {
3441 // The effective display frame of the attached window depends on
3442 // whether it is taking care of insetting its content. If not,
3443 // we need to use the parent's content frame so that the entire
3444 // window is positioned within that content. Otherwise we can use
Wale Ogunwale393b1c12014-10-18 16:22:01 -07003445 // the overscan frame and let the attached window take care of
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003446 // positioning its content appropriately.
Dianne Hackborndea3ef72010-10-28 14:24:22 -07003447 if (adjust != SOFT_INPUT_ADJUST_RESIZE) {
Wale Ogunwale393b1c12014-10-18 16:22:01 -07003448 // Set the content frame of the attached window to the parent's decor frame
3449 // (same as content frame when IME isn't present) if specifically requested by
3450 // setting {@link WindowManager.LayoutParams#FLAG_LAYOUT_ATTACHED_IN_DECOR} flag.
3451 // Otherwise, use the overscan frame.
3452 cf.set((fl & FLAG_LAYOUT_ATTACHED_IN_DECOR) != 0
3453 ? attached.getContentFrameLw() : attached.getOverscanFrameLw());
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003454 } else {
3455 // If the window is resizing, then we want to base the content
3456 // frame on our attached content frame to resize... however,
3457 // things can be tricky if the attached window is NOT in resize
3458 // mode, in which case its content frame will be larger.
3459 // Ungh. So to deal with that, make sure the content frame
3460 // we end up using is not covering the IM dock.
3461 cf.set(attached.getContentFrameLw());
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003462 if (attached.isVoiceInteraction()) {
3463 if (cf.left < mVoiceContentLeft) cf.left = mVoiceContentLeft;
3464 if (cf.top < mVoiceContentTop) cf.top = mVoiceContentTop;
3465 if (cf.right > mVoiceContentRight) cf.right = mVoiceContentRight;
3466 if (cf.bottom > mVoiceContentBottom) cf.bottom = mVoiceContentBottom;
3467 } else if (attached.getSurfaceLayer() < mDockLayer) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003468 if (cf.left < mContentLeft) cf.left = mContentLeft;
3469 if (cf.top < mContentTop) cf.top = mContentTop;
3470 if (cf.right > mContentRight) cf.right = mContentRight;
3471 if (cf.bottom > mContentBottom) cf.bottom = mContentBottom;
3472 }
3473 }
3474 df.set(insetDecors ? attached.getDisplayFrameLw() : cf);
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003475 of.set(insetDecors ? attached.getOverscanFrameLw() : cf);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003476 vf.set(attached.getVisibleFrameLw());
3477 }
3478 // The LAYOUT_IN_SCREEN flag is used to determine whether the attached
3479 // window should be positioned relative to its parent or the entire
3480 // screen.
3481 pf.set((fl & FLAG_LAYOUT_IN_SCREEN) == 0
3482 ? attached.getFrameLw() : df);
3483 }
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003484
3485 private void applyStableConstraints(int sysui, int fl, Rect r) {
3486 if ((sysui & View.SYSTEM_UI_FLAG_LAYOUT_STABLE) != 0) {
3487 // If app is requesting a stable layout, don't let the
3488 // content insets go below the stable values.
3489 if ((fl & FLAG_FULLSCREEN) != 0) {
3490 if (r.left < mStableFullscreenLeft) r.left = mStableFullscreenLeft;
3491 if (r.top < mStableFullscreenTop) r.top = mStableFullscreenTop;
3492 if (r.right > mStableFullscreenRight) r.right = mStableFullscreenRight;
3493 if (r.bottom > mStableFullscreenBottom) r.bottom = mStableFullscreenBottom;
3494 } else {
3495 if (r.left < mStableLeft) r.left = mStableLeft;
3496 if (r.top < mStableTop) r.top = mStableTop;
3497 if (r.right > mStableRight) r.right = mStableRight;
3498 if (r.bottom > mStableBottom) r.bottom = mStableBottom;
3499 }
3500 }
3501 }
3502
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003503 /** {@inheritDoc} */
Craig Mautner69b08182012-09-05 13:07:13 -07003504 @Override
Craig Mautnerc9457fa2014-06-06 14:27:48 -07003505 public void layoutWindowLw(WindowState win, WindowState attached) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003506 // we've already done the status bar
Craig Mautnerc9457fa2014-06-06 14:27:48 -07003507 final WindowManager.LayoutParams attrs = win.getAttrs();
3508 if ((win == mStatusBar && (attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) == 0) ||
3509 win == mNavigationBar) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003510 return;
3511 }
Craig Mautner69b08182012-09-05 13:07:13 -07003512 final boolean isDefaultDisplay = win.isDefaultDisplay();
3513 final boolean needsToOffsetInputMethodTarget = isDefaultDisplay &&
satok1bc0a492012-04-25 22:47:12 +09003514 (win == mLastInputMethodTargetWindow && mLastInputMethodWindow != null);
3515 if (needsToOffsetInputMethodTarget) {
Craig Mautnereda67292013-04-28 13:50:14 -07003516 if (DEBUG_LAYOUT) Slog.i(TAG, "Offset ime target window by the last ime window state");
satok1bc0a492012-04-25 22:47:12 +09003517 offsetInputMethodWindowLw(mLastInputMethodWindow);
3518 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003519
John Spurlockc6d1c602014-01-17 15:22:06 -05003520 final int fl = PolicyControl.getWindowFlags(win, attrs);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003521 final int sim = attrs.softInputMode;
John Spurlock1db8b682014-02-18 11:18:59 -05003522 final int sysUiFl = PolicyControl.getSystemUiVisibility(win, null);
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003523
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003524 final Rect pf = mTmpParentFrame;
3525 final Rect df = mTmpDisplayFrame;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003526 final Rect of = mTmpOverscanFrame;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003527 final Rect cf = mTmpContentFrame;
3528 final Rect vf = mTmpVisibleFrame;
John Spurlock46646232013-09-30 22:32:42 -04003529 final Rect dcf = mTmpDecorFrame;
Adrian Roosfa104232014-06-20 16:10:14 -07003530 final Rect sf = mTmpStableFrame;
John Spurlock46646232013-09-30 22:32:42 -04003531 dcf.setEmpty();
Craig Mautner69b08182012-09-05 13:07:13 -07003532
3533 final boolean hasNavBar = (isDefaultDisplay && mHasNavigationBar
Daniel Sandler36412a72011-08-04 09:35:13 -04003534 && mNavigationBar != null && mNavigationBar.isVisibleLw());
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003535
Craig Mautnerf683b562012-10-02 11:10:57 -07003536 final int adjust = sim & SOFT_INPUT_MASK_ADJUST;
3537
Adrian Roosfa104232014-06-20 16:10:14 -07003538 if (isDefaultDisplay) {
3539 sf.set(mStableLeft, mStableTop, mStableRight, mStableBottom);
3540 } else {
3541 sf.set(mOverscanLeft, mOverscanTop, mOverscanRight, mOverscanBottom);
3542 }
3543
Craig Mautner69b08182012-09-05 13:07:13 -07003544 if (!isDefaultDisplay) {
3545 if (attached != null) {
3546 // If this window is attached to another, our display
3547 // frame is the same as the one we are attached to.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003548 setAttachedWindowFrames(win, fl, adjust, attached, true, pf, df, of, cf, vf);
Craig Mautner69b08182012-09-05 13:07:13 -07003549 } else {
3550 // Give the window full screen.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003551 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
3552 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
3553 pf.right = df.right = of.right = cf.right
Dianne Hackbornc652de82013-02-15 16:32:56 -08003554 = mOverscanScreenLeft + mOverscanScreenWidth;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003555 pf.bottom = df.bottom = of.bottom = cf.bottom
Dianne Hackbornc652de82013-02-15 16:32:56 -08003556 = mOverscanScreenTop + mOverscanScreenHeight;
Craig Mautner69b08182012-09-05 13:07:13 -07003557 }
3558 } else if (attrs.type == TYPE_INPUT_METHOD) {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003559 pf.left = df.left = of.left = cf.left = vf.left = mDockLeft;
3560 pf.top = df.top = of.top = cf.top = vf.top = mDockTop;
3561 pf.right = df.right = of.right = cf.right = vf.right = mDockRight;
John Spurlockc68d5772013-10-08 11:47:58 -04003562 // IM dock windows layout below the nav bar...
John Spurlock57beb3b2013-10-10 10:27:44 -04003563 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
John Spurlockc68d5772013-10-08 11:47:58 -04003564 // ...with content insets above the nav bar
3565 cf.bottom = vf.bottom = mStableBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003566 // IM dock windows always go to the bottom of the screen.
3567 attrs.gravity = Gravity.BOTTOM;
3568 mDockLayer = win.getSurfaceLayer();
Jorim Jaggie0700182014-08-21 01:12:37 +02003569 } else if (win == mStatusBar && (attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
3570 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
3571 pf.top = df.top = of.top = mUnrestrictedScreenTop;
3572 pf.right = df.right = of.right = mUnrestrictedScreenWidth + mUnrestrictedScreenLeft;
3573 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenHeight + mUnrestrictedScreenTop;
3574 cf.left = vf.left = mStableLeft;
3575 cf.top = vf.top = mStableTop;
3576 cf.right = vf.right = mStableRight;
3577 vf.bottom = mStableBottom;
3578 cf.bottom = mContentBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003579 } else {
John Spurlock46646232013-09-30 22:32:42 -04003580
3581 // Default policy decor for the default display
3582 dcf.left = mSystemLeft;
3583 dcf.top = mSystemTop;
3584 dcf.right = mSystemRight;
3585 dcf.bottom = mSystemBottom;
John Spurlockbd957402013-10-03 11:38:39 -04003586 final boolean inheritTranslucentDecor = (attrs.privateFlags
3587 & WindowManager.LayoutParams.PRIVATE_FLAG_INHERIT_TRANSLUCENT_DECOR) != 0;
John Spurlock65567d42013-10-08 10:08:32 -04003588 final boolean isAppWindow =
3589 attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW &&
3590 attrs.type <= WindowManager.LayoutParams.LAST_APPLICATION_WINDOW;
3591 final boolean topAtRest =
3592 win == mTopFullscreenOpaqueWindowState && !win.isAnimatingLw();
3593 if (isAppWindow && !inheritTranslucentDecor && !topAtRest) {
John Spurlockbd957402013-10-03 11:38:39 -04003594 if ((sysUiFl & View.SYSTEM_UI_FLAG_FULLSCREEN) == 0
3595 && (fl & WindowManager.LayoutParams.FLAG_FULLSCREEN) == 0
Adrian Roosea562512014-05-05 13:33:03 +02003596 && (fl & WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS) == 0
3597 && (fl & WindowManager.LayoutParams.
3598 FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS) == 0) {
John Spurlock46646232013-09-30 22:32:42 -04003599 // Ensure policy decor includes status bar
3600 dcf.top = mStableTop;
3601 }
John Spurlockbd957402013-10-03 11:38:39 -04003602 if ((fl & WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION) == 0
Adrian Roosea562512014-05-05 13:33:03 +02003603 && (sysUiFl & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) == 0
3604 && (fl & WindowManager.LayoutParams.
3605 FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS) == 0) {
John Spurlock46646232013-09-30 22:32:42 -04003606 // Ensure policy decor includes navigation bar
3607 dcf.bottom = mStableBottom;
3608 dcf.right = mStableRight;
3609 }
3610 }
3611
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003612 if ((fl & (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR))
3613 == (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR)) {
RoboErik8a2cfc32014-05-16 11:19:38 -07003614 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle()
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003615 + "): IN_SCREEN, INSET_DECOR");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003616 // This is the case for a normal activity window: we want it
3617 // to cover all of the screen space, and it can take care of
3618 // moving its contents to account for screen decorations that
3619 // intrude into that space.
3620 if (attached != null) {
3621 // If this window is attached to another, our display
3622 // frame is the same as the one we are attached to.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003623 setAttachedWindowFrames(win, fl, adjust, attached, true, pf, df, of, cf, vf);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003624 } else {
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003625 if (attrs.type == TYPE_STATUS_BAR_PANEL
3626 || attrs.type == TYPE_STATUS_BAR_SUB_PANEL) {
Joe Onorato29fc2c92010-11-24 10:26:50 -08003627 // Status bar panels are the only windows who can go on top of
3628 // the status bar. They are protected by the STATUS_BAR_SERVICE
3629 // permission, so they have the same privileges as the status
3630 // bar itself.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003631 //
Daniel Sandler8e8b4152011-07-21 01:16:43 -04003632 // However, they should still dodge the navigation bar if it exists.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003633
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003634 pf.left = df.left = of.left = hasNavBar
3635 ? mDockLeft : mUnrestrictedScreenLeft;
3636 pf.top = df.top = of.top = mUnrestrictedScreenTop;
3637 pf.right = df.right = of.right = hasNavBar
3638 ? mRestrictedScreenLeft+mRestrictedScreenWidth
3639 : mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3640 pf.bottom = df.bottom = of.bottom = hasNavBar
3641 ? mRestrictedScreenTop+mRestrictedScreenHeight
3642 : mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003643
Craig Mautnereda67292013-04-28 13:50:14 -07003644 if (DEBUG_LAYOUT) Slog.v(TAG, String.format(
Daniel Sandler8e8b4152011-07-21 01:16:43 -04003645 "Laying out status bar window: (%d,%d - %d,%d)",
3646 pf.left, pf.top, pf.right, pf.bottom));
John Spurlock46646232013-09-30 22:32:42 -04003647 } else if ((fl & FLAG_LAYOUT_IN_OVERSCAN) != 0
Dianne Hackbornc652de82013-02-15 16:32:56 -08003648 && attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
3649 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
3650 // Asking to layout into the overscan region, so give it that pure
3651 // unrestricted area.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003652 pf.left = df.left = of.left = mOverscanScreenLeft;
3653 pf.top = df.top = of.top = mOverscanScreenTop;
3654 pf.right = df.right = of.right = mOverscanScreenLeft + mOverscanScreenWidth;
3655 pf.bottom = df.bottom = of.bottom = mOverscanScreenTop
3656 + mOverscanScreenHeight;
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07003657 } else if (canHideNavigationBar()
Dianne Hackbornf87d1962012-04-04 12:48:24 -07003658 && (sysUiFl & View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION) != 0
Jorim Jaggi380ecb82014-03-14 17:25:20 +01003659 && attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
3660 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003661 // Asking for layout as if the nav bar is hidden, lets the
Dianne Hackbornc652de82013-02-15 16:32:56 -08003662 // application extend into the unrestricted overscan screen area. We
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003663 // only do this for application windows to ensure no window that
3664 // can be above the nav bar can do this.
Dianne Hackborn313440842013-02-19 19:22:59 -08003665 pf.left = df.left = mOverscanScreenLeft;
3666 pf.top = df.top = mOverscanScreenTop;
3667 pf.right = df.right = mOverscanScreenLeft + mOverscanScreenWidth;
3668 pf.bottom = df.bottom = mOverscanScreenTop + mOverscanScreenHeight;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003669 // We need to tell the app about where the frame inside the overscan
3670 // is, so it can inset its content by that amount -- it didn't ask
3671 // to actually extend itself into the overscan region.
3672 of.left = mUnrestrictedScreenLeft;
3673 of.top = mUnrestrictedScreenTop;
3674 of.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3675 of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08003676 } else {
Dianne Hackborn313440842013-02-19 19:22:59 -08003677 pf.left = df.left = mRestrictedOverscanScreenLeft;
3678 pf.top = df.top = mRestrictedOverscanScreenTop;
3679 pf.right = df.right = mRestrictedOverscanScreenLeft
3680 + mRestrictedOverscanScreenWidth;
3681 pf.bottom = df.bottom = mRestrictedOverscanScreenTop
3682 + mRestrictedOverscanScreenHeight;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003683 // We need to tell the app about where the frame inside the overscan
3684 // is, so it can inset its content by that amount -- it didn't ask
3685 // to actually extend itself into the overscan region.
3686 of.left = mUnrestrictedScreenLeft;
3687 of.top = mUnrestrictedScreenTop;
3688 of.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3689 of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08003690 }
Craig Mautner69b08182012-09-05 13:07:13 -07003691
John Spurlock46646232013-09-30 22:32:42 -04003692 if ((fl & FLAG_FULLSCREEN) == 0) {
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003693 if (win.isVoiceInteraction()) {
3694 cf.left = mVoiceContentLeft;
3695 cf.top = mVoiceContentTop;
3696 cf.right = mVoiceContentRight;
3697 cf.bottom = mVoiceContentBottom;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003698 } else {
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003699 if (adjust != SOFT_INPUT_ADJUST_RESIZE) {
3700 cf.left = mDockLeft;
3701 cf.top = mDockTop;
3702 cf.right = mDockRight;
3703 cf.bottom = mDockBottom;
3704 } else {
3705 cf.left = mContentLeft;
3706 cf.top = mContentTop;
3707 cf.right = mContentRight;
3708 cf.bottom = mContentBottom;
3709 }
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003710 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003711 } else {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003712 // Full screen windows are always given a layout that is as if the
3713 // status bar and other transient decors are gone. This is to avoid
3714 // bad states when moving from a window that is not hding the
3715 // status bar to one that is.
3716 cf.left = mRestrictedScreenLeft;
3717 cf.top = mRestrictedScreenTop;
3718 cf.right = mRestrictedScreenLeft + mRestrictedScreenWidth;
3719 cf.bottom = mRestrictedScreenTop + mRestrictedScreenHeight;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003720 }
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003721 applyStableConstraints(sysUiFl, fl, cf);
Dianne Hackborndea3ef72010-10-28 14:24:22 -07003722 if (adjust != SOFT_INPUT_ADJUST_NOTHING) {
3723 vf.left = mCurLeft;
3724 vf.top = mCurTop;
3725 vf.right = mCurRight;
3726 vf.bottom = mCurBottom;
3727 } else {
3728 vf.set(cf);
3729 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003730 }
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003731 } else if ((fl & FLAG_LAYOUT_IN_SCREEN) != 0 || (sysUiFl
3732 & (View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
3733 | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION)) != 0) {
Craig Mautnereda67292013-04-28 13:50:14 -07003734 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle() +
3735 "): IN_SCREEN");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003736 // A window that has requested to fill the entire screen just
3737 // gets everything, period.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003738 if (attrs.type == TYPE_STATUS_BAR_PANEL
3739 || attrs.type == TYPE_STATUS_BAR_SUB_PANEL) {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003740 pf.left = df.left = of.left = cf.left = hasNavBar
3741 ? mDockLeft : mUnrestrictedScreenLeft;
3742 pf.top = df.top = of.top = cf.top = mUnrestrictedScreenTop;
3743 pf.right = df.right = of.right = cf.right = hasNavBar
Daniel Sandler8e8b4152011-07-21 01:16:43 -04003744 ? mRestrictedScreenLeft+mRestrictedScreenWidth
Dianne Hackbornc652de82013-02-15 16:32:56 -08003745 : mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003746 pf.bottom = df.bottom = of.bottom = cf.bottom = hasNavBar
Daniel Sandler8e8b4152011-07-21 01:16:43 -04003747 ? mRestrictedScreenTop+mRestrictedScreenHeight
Dianne Hackbornc652de82013-02-15 16:32:56 -08003748 : mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Craig Mautnereda67292013-04-28 13:50:14 -07003749 if (DEBUG_LAYOUT) Slog.v(TAG, String.format(
Daniel Sandler36412a72011-08-04 09:35:13 -04003750 "Laying out IN_SCREEN status bar window: (%d,%d - %d,%d)",
3751 pf.left, pf.top, pf.right, pf.bottom));
Jim Millere898ac52012-04-06 17:10:57 -07003752 } else if (attrs.type == TYPE_NAVIGATION_BAR
3753 || attrs.type == TYPE_NAVIGATION_BAR_PANEL) {
Daniel Sandler8e8b4152011-07-21 01:16:43 -04003754 // The navigation bar has Real Ultimate Power.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003755 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
3756 pf.top = df.top = of.top = mUnrestrictedScreenTop;
3757 pf.right = df.right = of.right = mUnrestrictedScreenLeft
3758 + mUnrestrictedScreenWidth;
3759 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenTop
3760 + mUnrestrictedScreenHeight;
Craig Mautnereda67292013-04-28 13:50:14 -07003761 if (DEBUG_LAYOUT) Slog.v(TAG, String.format(
Daniel Sandler8e8b4152011-07-21 01:16:43 -04003762 "Laying out navigation bar window: (%d,%d - %d,%d)",
3763 pf.left, pf.top, pf.right, pf.bottom));
Dianne Hackborn01011c32012-02-21 13:54:21 -08003764 } else if ((attrs.type == TYPE_SECURE_SYSTEM_OVERLAY
3765 || attrs.type == TYPE_BOOT_PROGRESS)
Jeff Brownbfcb60a2011-09-08 18:51:14 -07003766 && ((fl & FLAG_FULLSCREEN) != 0)) {
3767 // Fullscreen secure system overlays get what they ask for.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003768 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
3769 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
3770 pf.right = df.right = of.right = cf.right = mOverscanScreenLeft
3771 + mOverscanScreenWidth;
3772 pf.bottom = df.bottom = of.bottom = cf.bottom = mOverscanScreenTop
3773 + mOverscanScreenHeight;
Craig Mautner165be0c2015-01-27 15:16:58 -08003774 } else if (attrs.type == TYPE_BOOT_PROGRESS) {
Dianne Hackborn01011c32012-02-21 13:54:21 -08003775 // Boot progress screen always covers entire display.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003776 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
3777 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
3778 pf.right = df.right = of.right = cf.right = mOverscanScreenLeft
3779 + mOverscanScreenWidth;
3780 pf.bottom = df.bottom = of.bottom = cf.bottom = mOverscanScreenTop
3781 + mOverscanScreenHeight;
John Spurlockef4adae2013-08-26 17:58:58 -04003782 } else if (attrs.type == TYPE_WALLPAPER) {
Dianne Hackborn067e5f62014-09-07 23:14:30 -07003783 // The wallpaper also has Real Ultimate Power, but we want to tell
3784 // it about the overscan area.
3785 pf.left = df.left = mOverscanScreenLeft;
3786 pf.top = df.top = mOverscanScreenTop;
3787 pf.right = df.right = mOverscanScreenLeft + mOverscanScreenWidth;
3788 pf.bottom = df.bottom = mOverscanScreenTop + mOverscanScreenHeight;
3789 of.left = cf.left = mUnrestrictedScreenLeft;
3790 of.top = cf.top = mUnrestrictedScreenTop;
3791 of.right = cf.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3792 of.bottom = cf.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
John Spurlock46646232013-09-30 22:32:42 -04003793 } else if ((fl & FLAG_LAYOUT_IN_OVERSCAN) != 0
Dianne Hackbornc652de82013-02-15 16:32:56 -08003794 && attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
3795 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
3796 // Asking to layout into the overscan region, so give it that pure
3797 // unrestricted area.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003798 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
3799 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
3800 pf.right = df.right = of.right = cf.right
Dianne Hackbornc652de82013-02-15 16:32:56 -08003801 = mOverscanScreenLeft + mOverscanScreenWidth;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003802 pf.bottom = df.bottom = of.bottom = cf.bottom
Dianne Hackbornc652de82013-02-15 16:32:56 -08003803 = mOverscanScreenTop + mOverscanScreenHeight;
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07003804 } else if (canHideNavigationBar()
Dianne Hackbornf87d1962012-04-04 12:48:24 -07003805 && (sysUiFl & View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION) != 0
Craig Mautnerbeac1062014-06-03 14:38:57 -07003806 && (attrs.type == TYPE_STATUS_BAR
3807 || attrs.type == TYPE_TOAST
John Spurlock34e13d92013-08-10 06:52:28 -04003808 || (attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
3809 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW))) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003810 // Asking for layout as if the nav bar is hidden, lets the
3811 // application extend into the unrestricted screen area. We
John Spurlock34e13d92013-08-10 06:52:28 -04003812 // only do this for application windows (or toasts) to ensure no window that
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003813 // can be above the nav bar can do this.
3814 // XXX This assumes that an app asking for this will also
3815 // ask for layout in only content. We can't currently figure out
3816 // what the screen would be if only laying out to hide the nav bar.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003817 pf.left = df.left = of.left = cf.left = mUnrestrictedScreenLeft;
3818 pf.top = df.top = of.top = cf.top = mUnrestrictedScreenTop;
3819 pf.right = df.right = of.right = cf.right = mUnrestrictedScreenLeft
3820 + mUnrestrictedScreenWidth;
3821 pf.bottom = df.bottom = of.bottom = cf.bottom = mUnrestrictedScreenTop
3822 + mUnrestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08003823 } else {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003824 pf.left = df.left = of.left = cf.left = mRestrictedScreenLeft;
3825 pf.top = df.top = of.top = cf.top = mRestrictedScreenTop;
3826 pf.right = df.right = of.right = cf.right = mRestrictedScreenLeft
3827 + mRestrictedScreenWidth;
3828 pf.bottom = df.bottom = of.bottom = cf.bottom = mRestrictedScreenTop
3829 + mRestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08003830 }
Craig Mautner69b08182012-09-05 13:07:13 -07003831
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003832 applyStableConstraints(sysUiFl, fl, cf);
Craig Mautner69b08182012-09-05 13:07:13 -07003833
Dianne Hackborndea3ef72010-10-28 14:24:22 -07003834 if (adjust != SOFT_INPUT_ADJUST_NOTHING) {
3835 vf.left = mCurLeft;
3836 vf.top = mCurTop;
3837 vf.right = mCurRight;
3838 vf.bottom = mCurBottom;
3839 } else {
3840 vf.set(cf);
3841 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003842 } else if (attached != null) {
Craig Mautnereda67292013-04-28 13:50:14 -07003843 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle() +
3844 "): attached to " + attached);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003845 // A child window should be placed inside of the same visible
3846 // frame that its parent had.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003847 setAttachedWindowFrames(win, fl, adjust, attached, false, pf, df, of, cf, vf);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003848 } else {
Craig Mautnereda67292013-04-28 13:50:14 -07003849 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle() +
3850 "): normal window");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003851 // Otherwise, a normal window must be placed inside the content
3852 // of all screen decorations.
Dianne Hackborna239c842011-06-01 12:28:20 -07003853 if (attrs.type == TYPE_STATUS_BAR_PANEL) {
3854 // Status bar panels are the only windows who can go on top of
3855 // the status bar. They are protected by the STATUS_BAR_SERVICE
3856 // permission, so they have the same privileges as the status
3857 // bar itself.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003858 pf.left = df.left = of.left = cf.left = mRestrictedScreenLeft;
3859 pf.top = df.top = of.top = cf.top = mRestrictedScreenTop;
3860 pf.right = df.right = of.right = cf.right = mRestrictedScreenLeft
3861 + mRestrictedScreenWidth;
3862 pf.bottom = df.bottom = of.bottom = cf.bottom = mRestrictedScreenTop
3863 + mRestrictedScreenHeight;
John Spurlock414c1f02013-12-04 13:47:36 -05003864 } else if (attrs.type == TYPE_TOAST || attrs.type == TYPE_SYSTEM_ALERT
3865 || attrs.type == TYPE_VOLUME_OVERLAY) {
3866 // These dialogs are stable to interim decor changes.
John Spurlockbd957402013-10-03 11:38:39 -04003867 pf.left = df.left = of.left = cf.left = mStableLeft;
3868 pf.top = df.top = of.top = cf.top = mStableTop;
3869 pf.right = df.right = of.right = cf.right = mStableRight;
3870 pf.bottom = df.bottom = of.bottom = cf.bottom = mStableBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003871 } else {
Dianne Hackborna239c842011-06-01 12:28:20 -07003872 pf.left = mContentLeft;
3873 pf.top = mContentTop;
3874 pf.right = mContentRight;
3875 pf.bottom = mContentBottom;
Dianne Hackborn20d94742014-05-29 18:35:45 -07003876 if (win.isVoiceInteraction()) {
3877 df.left = of.left = cf.left = mVoiceContentLeft;
3878 df.top = of.top = cf.top = mVoiceContentTop;
3879 df.right = of.right = cf.right = mVoiceContentRight;
3880 df.bottom = of.bottom = cf.bottom = mVoiceContentBottom;
3881 } else if (adjust != SOFT_INPUT_ADJUST_RESIZE) {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003882 df.left = of.left = cf.left = mDockLeft;
3883 df.top = of.top = cf.top = mDockTop;
3884 df.right = of.right = cf.right = mDockRight;
3885 df.bottom = of.bottom = cf.bottom = mDockBottom;
Dianne Hackborna239c842011-06-01 12:28:20 -07003886 } else {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003887 df.left = of.left = cf.left = mContentLeft;
3888 df.top = of.top = cf.top = mContentTop;
3889 df.right = of.right = cf.right = mContentRight;
3890 df.bottom = of.bottom = cf.bottom = mContentBottom;
Dianne Hackborna239c842011-06-01 12:28:20 -07003891 }
3892 if (adjust != SOFT_INPUT_ADJUST_NOTHING) {
3893 vf.left = mCurLeft;
3894 vf.top = mCurTop;
3895 vf.right = mCurRight;
3896 vf.bottom = mCurBottom;
3897 } else {
3898 vf.set(cf);
3899 }
Dianne Hackborndea3ef72010-10-28 14:24:22 -07003900 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003901 }
3902 }
Craig Mautner69b08182012-09-05 13:07:13 -07003903
Craig Mautnerb816bed2013-07-23 10:26:17 -07003904 // TYPE_SYSTEM_ERROR is above the NavigationBar so it can't be allowed to extend over it.
3905 if ((fl & FLAG_LAYOUT_NO_LIMITS) != 0 && attrs.type != TYPE_SYSTEM_ERROR) {
Dianne Hackborn067e5f62014-09-07 23:14:30 -07003906 df.left = df.top = -10000;
3907 df.right = df.bottom = 10000;
3908 if (attrs.type != TYPE_WALLPAPER) {
3909 of.left = of.top = cf.left = cf.top = vf.left = vf.top = -10000;
3910 of.right = of.bottom = cf.right = cf.bottom = vf.right = vf.bottom = 10000;
3911 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003912 }
3913
Craig Mautnereda67292013-04-28 13:50:14 -07003914 if (DEBUG_LAYOUT) Slog.v(TAG, "Compute frame " + attrs.getTitle()
The Android Open Source Project11267662009-03-18 17:39:47 -07003915 + ": sim=#" + Integer.toHexString(sim)
RoboErik8a2cfc32014-05-16 11:19:38 -07003916 + " attach=" + attached + " type=" + attrs.type
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003917 + String.format(" flags=0x%08x", fl)
The Android Open Source Project11267662009-03-18 17:39:47 -07003918 + " pf=" + pf.toShortString() + " df=" + df.toShortString()
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003919 + " of=" + of.toShortString()
John Spurlock46646232013-09-30 22:32:42 -04003920 + " cf=" + cf.toShortString() + " vf=" + vf.toShortString()
Adrian Roosfa104232014-06-20 16:10:14 -07003921 + " dcf=" + dcf.toShortString()
3922 + " sf=" + sf.toShortString());
Craig Mautner69b08182012-09-05 13:07:13 -07003923
Adrian Roosfa104232014-06-20 16:10:14 -07003924 win.computeFrameLw(pf, df, of, cf, vf, dcf, sf);
Craig Mautner69b08182012-09-05 13:07:13 -07003925
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003926 // Dock windows carve out the bottom of the screen, so normal windows
3927 // can't appear underneath them.
Craig Mautner8bd206b2012-10-03 10:32:02 -07003928 if (attrs.type == TYPE_INPUT_METHOD && win.isVisibleOrBehindKeyguardLw()
3929 && !win.getGivenInsetsPendingLw()) {
satok1bc0a492012-04-25 22:47:12 +09003930 setLastInputMethodWindowLw(null, null);
3931 offsetInputMethodWindowLw(win);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003932 }
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003933 if (attrs.type == TYPE_VOICE_INTERACTION && win.isVisibleOrBehindKeyguardLw()
3934 && !win.getGivenInsetsPendingLw()) {
3935 offsetVoiceInputWindowLw(win);
3936 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003937 }
3938
satok1bc0a492012-04-25 22:47:12 +09003939 private void offsetInputMethodWindowLw(WindowState win) {
3940 int top = win.getContentFrameLw().top;
3941 top += win.getGivenContentInsetsLw().top;
3942 if (mContentBottom > top) {
3943 mContentBottom = top;
3944 }
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003945 if (mVoiceContentBottom > top) {
3946 mVoiceContentBottom = top;
3947 }
satok1bc0a492012-04-25 22:47:12 +09003948 top = win.getVisibleFrameLw().top;
3949 top += win.getGivenVisibleInsetsLw().top;
3950 if (mCurBottom > top) {
3951 mCurBottom = top;
3952 }
Craig Mautnereda67292013-04-28 13:50:14 -07003953 if (DEBUG_LAYOUT) Slog.v(TAG, "Input method: mDockBottom="
satok1bc0a492012-04-25 22:47:12 +09003954 + mDockBottom + " mContentBottom="
3955 + mContentBottom + " mCurBottom=" + mCurBottom);
3956 }
3957
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003958 private void offsetVoiceInputWindowLw(WindowState win) {
3959 final int gravity = win.getAttrs().gravity;
3960 switch (gravity&((Gravity.AXIS_PULL_BEFORE|Gravity.AXIS_PULL_AFTER)
3961 << Gravity.AXIS_X_SHIFT)) {
3962 case Gravity.AXIS_PULL_BEFORE<<Gravity.AXIS_X_SHIFT: {
3963 int right = win.getContentFrameLw().right - win.getGivenContentInsetsLw().right;
3964 if (mVoiceContentLeft < right) {
3965 mVoiceContentLeft = right;
3966 }
3967 } break;
3968 case Gravity.AXIS_PULL_AFTER<<Gravity.AXIS_X_SHIFT: {
3969 int left = win.getContentFrameLw().left - win.getGivenContentInsetsLw().left;
3970 if (mVoiceContentRight < left) {
3971 mVoiceContentRight = left;
3972 }
3973 } break;
3974 }
3975 switch (gravity&((Gravity.AXIS_PULL_BEFORE|Gravity.AXIS_PULL_AFTER)
3976 << Gravity.AXIS_Y_SHIFT)) {
3977 case Gravity.AXIS_PULL_BEFORE<<Gravity.AXIS_Y_SHIFT: {
3978 int bottom = win.getContentFrameLw().bottom - win.getGivenContentInsetsLw().bottom;
3979 if (mVoiceContentTop < bottom) {
3980 mVoiceContentTop = bottom;
3981 }
3982 } break;
3983 case Gravity.AXIS_PULL_AFTER<<Gravity.AXIS_Y_SHIFT: {
3984 int top = win.getContentFrameLw().top - win.getGivenContentInsetsLw().top;
3985 if (mVoiceContentBottom < top) {
3986 mVoiceContentBottom = top;
3987 }
3988 } break;
3989 }
3990 }
3991
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003992 /** {@inheritDoc} */
Craig Mautner61ac6bb2012-02-02 17:29:33 -08003993 @Override
3994 public void finishLayoutLw() {
3995 return;
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08003996 }
3997
3998 /** {@inheritDoc} */
Craig Mautnerad09bcc2012-10-08 13:33:11 -07003999 @Override
Craig Mautner39834192012-09-02 07:47:24 -07004000 public void beginPostLayoutPolicyLw(int displayWidth, int displayHeight) {
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004001 mTopFullscreenOpaqueWindowState = null;
Craig Mautner2bc789b2014-03-19 19:48:38 -07004002 mAppsToBeHidden.clear();
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004003 mAppsThatDismissKeyguard.clear();
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004004 mForceStatusBar = false;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07004005 mForceStatusBarFromKeyguard = false;
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08004006 mForcingShowNavBar = false;
4007 mForcingShowNavBarLayer = -1;
RoboErik8a2cfc32014-05-16 11:19:38 -07004008
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004009 mHideLockScreen = false;
4010 mAllowLockscreenWhenOn = false;
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004011 mDismissKeyguard = DISMISS_KEYGUARD_NONE;
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004012 mShowingLockscreen = false;
4013 mShowingDream = false;
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004014 mWinShowWhenLocked = null;
Jim Millerab954542014-10-10 18:21:49 -07004015 mKeyguardSecure = isKeyguardSecure();
4016 mKeyguardSecureIncludingHidden = mKeyguardSecure
4017 && (mKeyguardDelegate != null && mKeyguardDelegate.isShowing());
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004018 }
4019
4020 /** {@inheritDoc} */
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004021 @Override
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004022 public void applyPostLayoutPolicyLw(WindowState win, WindowManager.LayoutParams attrs) {
Dianne Hackbornbc1aa7b2011-09-20 11:20:31 -07004023 if (DEBUG_LAYOUT) Slog.i(TAG, "Win " + win + ": isVisibleOrBehindKeyguardLw="
4024 + win.isVisibleOrBehindKeyguardLw());
John Spurlockc6d1c602014-01-17 15:22:06 -05004025 final int fl = PolicyControl.getWindowFlags(win, attrs);
John Spurlock414c1f02013-12-04 13:47:36 -05004026 if (mTopFullscreenOpaqueWindowState == null
4027 && win.isVisibleLw() && attrs.type == TYPE_INPUT_METHOD) {
4028 mForcingShowNavBar = true;
4029 mForcingShowNavBarLayer = win.getSurfaceLayer();
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08004030 }
Jorim Jaggiafd4a552014-04-08 15:13:05 +02004031 if (attrs.type == TYPE_STATUS_BAR && (attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
Jorim Jaggiafd4a552014-04-08 15:13:05 +02004032 mForceStatusBarFromKeyguard = true;
4033 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004034 if (mTopFullscreenOpaqueWindowState == null &&
Dianne Hackborn01b02a72012-01-12 14:05:03 -08004035 win.isVisibleOrBehindKeyguardLw() && !win.isGoneForLayoutLw()) {
John Spurlockc6d1c602014-01-17 15:22:06 -05004036 if ((fl & FLAG_FORCE_NOT_FULLSCREEN) != 0) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004037 if ((attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07004038 mForceStatusBarFromKeyguard = true;
4039 } else {
4040 mForceStatusBar = true;
4041 }
4042 }
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004043 if ((attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004044 mShowingLockscreen = true;
Dianne Hackbornbc1aa7b2011-09-20 11:20:31 -07004045 }
Craig Mautnerab55e522014-03-03 13:26:03 -08004046 boolean appWindow = attrs.type >= FIRST_APPLICATION_WINDOW
Craig Mautner7d7808f2014-09-11 18:02:38 -07004047 && attrs.type < FIRST_SYSTEM_WINDOW;
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004048 if (attrs.type == TYPE_DREAM) {
Jeff Brownc8018eb2012-10-29 21:33:27 -07004049 // If the lockscreen was showing when the dream started then wait
4050 // for the dream to draw before hiding the lockscreen.
4051 if (!mDreamingLockscreen
4052 || (win.isVisibleLw() && win.hasDrawnLw())) {
4053 mShowingDream = true;
Craig Mautnerab55e522014-03-03 13:26:03 -08004054 appWindow = true;
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004055 }
4056 }
Craig Mautnerab55e522014-03-03 13:26:03 -08004057
Craig Mautner00156ec2014-03-06 22:29:02 -08004058 final boolean showWhenLocked = (fl & FLAG_SHOW_WHEN_LOCKED) != 0;
Craig Mautner74ee9382014-04-01 15:20:16 -07004059 final boolean dismissKeyguard = (fl & FLAG_DISMISS_KEYGUARD) != 0;
Craig Mautnerab55e522014-03-03 13:26:03 -08004060 if (appWindow) {
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004061 final IApplicationToken appToken = win.getAppToken();
4062 if (showWhenLocked) {
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004063 // Remove any previous windows with the same appToken.
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004064 mAppsToBeHidden.remove(appToken);
4065 mAppsThatDismissKeyguard.remove(appToken);
Craig Mautnerca0a1242014-12-02 12:25:14 -08004066 if (mAppsToBeHidden.isEmpty()) {
Craig Mautner192d6042014-12-02 23:24:48 -08004067 if (dismissKeyguard && !mKeyguardSecure) {
4068 mAppsThatDismissKeyguard.add(appToken);
4069 } else {
Craig Mautnerca0a1242014-12-02 12:25:14 -08004070 mWinShowWhenLocked = win;
4071 mHideLockScreen = true;
4072 mForceStatusBarFromKeyguard = false;
Craig Mautnerca0a1242014-12-02 12:25:14 -08004073 }
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004074 }
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004075 } else if (dismissKeyguard) {
Jim Millerab954542014-10-10 18:21:49 -07004076 if (mKeyguardSecure) {
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004077 mAppsToBeHidden.add(appToken);
4078 } else {
4079 mAppsToBeHidden.remove(appToken);
4080 }
4081 mAppsThatDismissKeyguard.add(appToken);
Craig Mautner2bc789b2014-03-19 19:48:38 -07004082 } else {
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004083 mAppsToBeHidden.add(appToken);
Craig Mautner2bc789b2014-03-19 19:48:38 -07004084 }
Craig Mautnerab55e522014-03-03 13:26:03 -08004085 if (attrs.x == 0 && attrs.y == 0
4086 && attrs.width == WindowManager.LayoutParams.MATCH_PARENT
4087 && attrs.height == WindowManager.LayoutParams.MATCH_PARENT) {
4088 if (DEBUG_LAYOUT) Slog.v(TAG, "Fullscreen window: " + win);
4089 mTopFullscreenOpaqueWindowState = win;
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004090 if (!mAppsThatDismissKeyguard.isEmpty() &&
4091 mDismissKeyguard == DISMISS_KEYGUARD_NONE) {
4092 if (DEBUG_LAYOUT) Slog.v(TAG,
4093 "Setting mDismissKeyguard true by win " + win);
4094 mDismissKeyguard = mWinDismissingKeyguard == win ?
4095 DISMISS_KEYGUARD_CONTINUE : DISMISS_KEYGUARD_START;
4096 mWinDismissingKeyguard = win;
Jim Millerab954542014-10-10 18:21:49 -07004097 mForceStatusBarFromKeyguard = mShowingLockscreen && mKeyguardSecure;
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004098 } else if (mAppsToBeHidden.isEmpty() && showWhenLocked) {
4099 if (DEBUG_LAYOUT) Slog.v(TAG,
4100 "Setting mHideLockScreen to true by win " + win);
4101 mHideLockScreen = true;
4102 mForceStatusBarFromKeyguard = false;
Craig Mautnerab55e522014-03-03 13:26:03 -08004103 }
Craig Mautner00156ec2014-03-06 22:29:02 -08004104 if ((fl & FLAG_ALLOW_LOCK_WHILE_SCREEN_ON) != 0) {
Craig Mautnerab55e522014-03-03 13:26:03 -08004105 mAllowLockscreenWhenOn = true;
4106 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004107 }
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004108
4109 if (mWinShowWhenLocked != null &&
4110 mWinShowWhenLocked.getAppToken() != win.getAppToken()) {
4111 win.hideLw(false);
4112 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004113 }
4114 }
4115 }
4116
4117 /** {@inheritDoc} */
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004118 @Override
Craig Mautner39834192012-09-02 07:47:24 -07004119 public int finishPostLayoutPolicyLw() {
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004120 if (mWinShowWhenLocked != null &&
4121 mWinShowWhenLocked != mTopFullscreenOpaqueWindowState) {
4122 // A dialog is dismissing the keyguard. Put the wallpaper behind it and hide the
4123 // fullscreen window.
4124 // TODO: Make sure FLAG_SHOW_WALLPAPER is restored when dialog is dismissed. Or not.
4125 mWinShowWhenLocked.getAttrs().flags |= FLAG_SHOW_WALLPAPER;
4126 mTopFullscreenOpaqueWindowState.hideLw(false);
4127 mTopFullscreenOpaqueWindowState = mWinShowWhenLocked;
4128 }
4129
Dianne Hackborn39c2d712009-09-22 11:41:31 -07004130 int changes = 0;
Joe Onorato93056472010-09-10 10:30:46 -04004131 boolean topIsFullscreen = false;
Daniel Sandlere02d8082010-10-08 15:13:22 -04004132
4133 final WindowManager.LayoutParams lp = (mTopFullscreenOpaqueWindowState != null)
4134 ? mTopFullscreenOpaqueWindowState.getAttrs()
4135 : null;
4136
Jeff Brownc8018eb2012-10-29 21:33:27 -07004137 // If we are not currently showing a dream then remember the current
4138 // lockscreen state. We will use this to determine whether the dream
4139 // started while the lockscreen was showing and remember this state
4140 // while the dream is showing.
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004141 if (!mShowingDream) {
4142 mDreamingLockscreen = mShowingLockscreen;
4143 }
4144
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004145 if (mStatusBar != null) {
Craig Mautnereda67292013-04-28 13:50:14 -07004146 if (DEBUG_LAYOUT) Slog.i(TAG, "force=" + mForceStatusBar
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07004147 + " forcefkg=" + mForceStatusBarFromKeyguard
Dianne Hackbornd70bc2f2009-10-06 23:25:51 -07004148 + " top=" + mTopFullscreenOpaqueWindowState);
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07004149 if (mForceStatusBar || mForceStatusBarFromKeyguard) {
Craig Mautnereda67292013-04-28 13:50:14 -07004150 if (DEBUG_LAYOUT) Slog.v(TAG, "Showing status bar: forced");
John Spurlock27735a42013-08-14 17:57:38 -04004151 if (mStatusBarController.setBarShowingLw(true)) {
4152 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4153 }
Craig Mautner81defc72013-10-29 11:10:42 -07004154 // Maintain fullscreen layout until incoming animation is complete.
4155 topIsFullscreen = mTopIsFullscreen && mStatusBar.isAnimatingLw();
John Spurlockf92b6162013-11-11 15:01:16 -05004156 // Transient status bar on the lockscreen is not allowed
4157 if (mForceStatusBarFromKeyguard && mStatusBarController.isTransientShowing()) {
4158 mStatusBarController.updateVisibilityLw(false /*transientAllowed*/,
4159 mLastSystemUiFlags, mLastSystemUiFlags);
4160 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004161 } else if (mTopFullscreenOpaqueWindowState != null) {
John Spurlockc6d1c602014-01-17 15:22:06 -05004162 final int fl = PolicyControl.getWindowFlags(null, lp);
Joe Onorato93056472010-09-10 10:30:46 -04004163 if (localLOGV) {
Craig Mautnereda67292013-04-28 13:50:14 -07004164 Slog.d(TAG, "frame: " + mTopFullscreenOpaqueWindowState.getFrameLw()
Joe Onorato93056472010-09-10 10:30:46 -04004165 + " shown frame: " + mTopFullscreenOpaqueWindowState.getShownFrameLw());
Craig Mautnereda67292013-04-28 13:50:14 -07004166 Slog.d(TAG, "attr: " + mTopFullscreenOpaqueWindowState.getAttrs()
John Spurlockc6d1c602014-01-17 15:22:06 -05004167 + " lp.flags=0x" + Integer.toHexString(fl));
Joe Onorato93056472010-09-10 10:30:46 -04004168 }
John Spurlockc6d1c602014-01-17 15:22:06 -05004169 topIsFullscreen = (fl & WindowManager.LayoutParams.FLAG_FULLSCREEN) != 0
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004170 || (mLastSystemUiFlags & View.SYSTEM_UI_FLAG_FULLSCREEN) != 0;
Joe Onorato93056472010-09-10 10:30:46 -04004171 // The subtle difference between the window for mTopFullscreenOpaqueWindowState
Mark Dolinerd0646dc2014-08-27 16:04:02 -07004172 // and mTopIsFullscreen is that mTopIsFullscreen is set only if the window
Joe Onorato93056472010-09-10 10:30:46 -04004173 // has the FLAG_FULLSCREEN set. Not sure if there is another way that to be the
4174 // case though.
John Spurlock27735a42013-08-14 17:57:38 -04004175 if (mStatusBarController.isTransientShowing()) {
4176 if (mStatusBarController.setBarShowingLw(true)) {
John Spurlock32beb2c2013-03-11 10:16:47 -04004177 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4178 }
4179 } else if (topIsFullscreen) {
Craig Mautnereda67292013-04-28 13:50:14 -07004180 if (DEBUG_LAYOUT) Slog.v(TAG, "** HIDING status bar");
John Spurlock27735a42013-08-14 17:57:38 -04004181 if (mStatusBarController.setBarShowingLw(false)) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07004182 changes |= FINISH_LAYOUT_REDO_LAYOUT;
Craig Mautnereda67292013-04-28 13:50:14 -07004183 } else {
Craig Mautnerc5a6e442013-06-05 17:22:35 -07004184 if (DEBUG_LAYOUT) Slog.v(TAG, "Status bar already hiding");
Daniel Sandler40427442010-07-16 11:44:52 -04004185 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004186 } else {
Craig Mautnereda67292013-04-28 13:50:14 -07004187 if (DEBUG_LAYOUT) Slog.v(TAG, "** SHOWING status bar: top is not fullscreen");
John Spurlock27735a42013-08-14 17:57:38 -04004188 if (mStatusBarController.setBarShowingLw(true)) {
4189 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4190 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004191 }
4192 }
4193 }
Daniel Sandlere02d8082010-10-08 15:13:22 -04004194
Craig Mautner81defc72013-10-29 11:10:42 -07004195 if (mTopIsFullscreen != topIsFullscreen) {
4196 if (!topIsFullscreen) {
4197 // Force another layout when status bar becomes fully shown.
4198 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4199 }
4200 mTopIsFullscreen = topIsFullscreen;
4201 }
Daniel Sandlere02d8082010-10-08 15:13:22 -04004202
Craig Mautner39834192012-09-02 07:47:24 -07004203 // Hide the key guard if a visible window explicitly specifies that it wants to be
4204 // displayed when the screen is locked.
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004205 if (mKeyguardDelegate != null && mStatusBar != null) {
4206 if (localLOGV) Slog.v(TAG, "finishPostLayoutPolicyLw: mHideKeyguard="
4207 + mHideLockScreen);
Jim Millerab954542014-10-10 18:21:49 -07004208 if (mDismissKeyguard != DISMISS_KEYGUARD_NONE && !mKeyguardSecure) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004209 mKeyguardHidden = true;
Jim Millerab954542014-10-10 18:21:49 -07004210 if (setKeyguardOccludedLw(true)) {
Dianne Hackborn39c2d712009-09-22 11:41:31 -07004211 changes |= FINISH_LAYOUT_REDO_LAYOUT
4212 | FINISH_LAYOUT_REDO_CONFIG
4213 | FINISH_LAYOUT_REDO_WALLPAPER;
4214 }
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004215 if (mKeyguardDelegate.isShowing()) {
4216 mHandler.post(new Runnable() {
4217 @Override
4218 public void run() {
4219 mKeyguardDelegate.keyguardDone(false, false);
4220 }
4221 });
4222 }
4223 } else if (mHideLockScreen) {
4224 mKeyguardHidden = true;
Jim Millerab954542014-10-10 18:21:49 -07004225 if (setKeyguardOccludedLw(true)) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004226 changes |= FINISH_LAYOUT_REDO_LAYOUT
4227 | FINISH_LAYOUT_REDO_CONFIG
4228 | FINISH_LAYOUT_REDO_WALLPAPER;
4229 }
4230 } else if (mDismissKeyguard != DISMISS_KEYGUARD_NONE) {
4231 // This is the case of keyguard isSecure() and not mHideLockScreen.
4232 if (mDismissKeyguard == DISMISS_KEYGUARD_START) {
4233 // Only launch the next keyguard unlock window once per window.
4234 mKeyguardHidden = false;
Jim Millerab954542014-10-10 18:21:49 -07004235 if (setKeyguardOccludedLw(false)) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004236 changes |= FINISH_LAYOUT_REDO_LAYOUT
4237 | FINISH_LAYOUT_REDO_CONFIG
4238 | FINISH_LAYOUT_REDO_WALLPAPER;
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004239 }
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004240 mHandler.post(new Runnable() {
4241 @Override
4242 public void run() {
4243 mKeyguardDelegate.dismiss();
4244 }
4245 });
4246 }
4247 } else {
4248 mWinDismissingKeyguard = null;
4249 mKeyguardHidden = false;
Jim Millerab954542014-10-10 18:21:49 -07004250 if (setKeyguardOccludedLw(false)) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004251 changes |= FINISH_LAYOUT_REDO_LAYOUT
4252 | FINISH_LAYOUT_REDO_CONFIG
4253 | FINISH_LAYOUT_REDO_WALLPAPER;
4254 }
Suchi Amalapurapu9cdc9032009-05-14 18:01:07 -07004255 }
4256 }
Joe Onorato664644d2011-01-23 17:53:23 -08004257
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004258 if ((updateSystemUiVisibilityLw()&SYSTEM_UI_CHANGING_LAYOUT) != 0) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07004259 // If the navigation bar has been hidden or shown, we need to do another
4260 // layout pass to update that window.
4261 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4262 }
Joe Onorato664644d2011-01-23 17:53:23 -08004263
Mike Lockwood28569302010-01-28 11:54:40 -05004264 // update since mAllowLockscreenWhenOn might have changed
4265 updateLockScreenTimeout();
Dianne Hackborn39c2d712009-09-22 11:41:31 -07004266 return changes;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004267 }
4268
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004269 /**
Jim Millerab954542014-10-10 18:21:49 -07004270 * Updates the occluded state of the Keyguard.
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004271 *
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004272 * @return Whether the flags have changed and we have to redo the layout.
4273 */
Jim Millerab954542014-10-10 18:21:49 -07004274 private boolean setKeyguardOccludedLw(boolean isOccluded) {
4275 boolean wasOccluded = mKeyguardOccluded;
4276 boolean showing = mKeyguardDelegate.isShowing();
4277 if (wasOccluded && !isOccluded && showing) {
4278 mKeyguardOccluded = false;
4279 mKeyguardDelegate.setOccluded(false);
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004280 mStatusBar.getAttrs().privateFlags |= PRIVATE_FLAG_KEYGUARD;
4281 mStatusBar.getAttrs().flags |= FLAG_SHOW_WALLPAPER;
4282 return true;
Jim Millerab954542014-10-10 18:21:49 -07004283 } else if (!wasOccluded && isOccluded && showing) {
4284 mKeyguardOccluded = true;
4285 mKeyguardDelegate.setOccluded(true);
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004286 mStatusBar.getAttrs().privateFlags &= ~PRIVATE_FLAG_KEYGUARD;
4287 mStatusBar.getAttrs().flags &= ~FLAG_SHOW_WALLPAPER;
4288 return true;
4289 } else {
4290 return false;
4291 }
4292 }
4293
4294 private boolean isStatusBarKeyguard() {
4295 return mStatusBar != null
4296 && (mStatusBar.getAttrs().privateFlags & PRIVATE_FLAG_KEYGUARD) != 0;
4297 }
4298
Jose Lima9546b202014-07-02 17:21:51 -07004299 @Override
Dianne Hackborn08743722009-12-21 12:16:51 -08004300 public boolean allowAppAnimationsLw() {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004301 if (isStatusBarKeyguard() || mShowingDream) {
Craig Mautner28816302013-10-10 20:31:00 -07004302 // If keyguard or dreams is currently visible, no reason to animate behind it.
Dianne Hackborn08743722009-12-21 12:16:51 -08004303 return false;
4304 }
Dianne Hackborn08743722009-12-21 12:16:51 -08004305 return true;
4306 }
4307
Jose Lima9546b202014-07-02 17:21:51 -07004308 @Override
Dianne Hackborndf89e652011-10-06 22:35:11 -07004309 public int focusChangedLw(WindowState lastFocus, WindowState newFocus) {
Joe Onorato664644d2011-01-23 17:53:23 -08004310 mFocusedWindow = newFocus;
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004311 if ((updateSystemUiVisibilityLw()&SYSTEM_UI_CHANGING_LAYOUT) != 0) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07004312 // If the navigation bar has been hidden or shown, we need to do another
4313 // layout pass to update that window.
4314 return FINISH_LAYOUT_REDO_LAYOUT;
4315 }
4316 return 0;
Joe Onorato664644d2011-01-23 17:53:23 -08004317 }
4318
Dianne Hackborn0ecadf72009-03-31 18:00:37 -07004319 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07004320 @Override
Jeff Brown46b9ac02010-04-22 18:58:52 -07004321 public void notifyLidSwitchChanged(long whenNanos, boolean lidOpen) {
4322 // lid changed state
Jeff Brownc458ce92012-04-30 14:58:40 -07004323 final int newLidState = lidOpen ? LID_OPEN : LID_CLOSED;
4324 if (newLidState == mLidState) {
4325 return;
4326 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07004327
Jeff Brownc458ce92012-04-30 14:58:40 -07004328 mLidState = newLidState;
4329 applyLidSwitchState();
Jeff Brown01a98dd2011-09-20 15:08:29 -07004330 updateRotation(true);
Jeff Brownc458ce92012-04-30 14:58:40 -07004331
4332 if (lidOpen) {
Bryce Lee584a4452014-10-21 15:55:55 -07004333 wakeUp(SystemClock.uptimeMillis(), mAllowTheaterModeWakeFromLidSwitch);
Jeff Brownc458ce92012-04-30 14:58:40 -07004334 } else if (!mLidControlsSleep) {
Jeff Brown96307042012-07-27 15:51:34 -07004335 mPowerManager.userActivity(SystemClock.uptimeMillis(), false);
Jeff Brown46b9ac02010-04-22 18:58:52 -07004336 }
4337 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004338
Michael Wright3818c922014-09-02 13:59:07 -07004339 @Override
4340 public void notifyCameraLensCoverSwitchChanged(long whenNanos, boolean lensCovered) {
4341 int lensCoverState = lensCovered ? CAMERA_LENS_COVERED : CAMERA_LENS_UNCOVERED;
4342 if (mCameraLensCoverState == lensCoverState) {
4343 return;
4344 }
4345 if (mCameraLensCoverState == CAMERA_LENS_COVERED &&
4346 lensCoverState == CAMERA_LENS_UNCOVERED) {
4347 Intent intent;
4348 final boolean keyguardActive = mKeyguardDelegate == null ? false :
4349 mKeyguardDelegate.isShowing();
4350 if (keyguardActive) {
4351 intent = new Intent(MediaStore.INTENT_ACTION_STILL_IMAGE_CAMERA_SECURE);
4352 } else {
4353 intent = new Intent(MediaStore.INTENT_ACTION_STILL_IMAGE_CAMERA);
4354 }
Bryce Lee584a4452014-10-21 15:55:55 -07004355 wakeUp(whenNanos / 1000000, mAllowTheaterModeWakeFromCameraLens);
Michael Wright3818c922014-09-02 13:59:07 -07004356 mContext.startActivityAsUser(intent, UserHandle.CURRENT_OR_SELF);
4357 }
4358 mCameraLensCoverState = lensCoverState;
4359 }
4360
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004361 void setHdmiPlugged(boolean plugged) {
4362 if (mHdmiPlugged != plugged) {
4363 mHdmiPlugged = plugged;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07004364 updateRotation(true, true);
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004365 Intent intent = new Intent(ACTION_HDMI_PLUGGED);
Joe Onoratodc100302011-01-11 17:07:41 -08004366 intent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT);
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004367 intent.putExtra(EXTRA_HDMI_PLUGGED_STATE, plugged);
Dianne Hackborn5ac72a22012-08-29 18:32:08 -07004368 mContext.sendStickyBroadcastAsUser(intent, UserHandle.ALL);
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004369 }
4370 }
4371
Joe Onoratoea495d42011-04-06 11:41:11 -07004372 void initializeHdmiState() {
Joe Onorato7ba631f2011-05-04 15:28:00 -07004373 boolean plugged = false;
Joe Onoratoea495d42011-04-06 11:41:11 -07004374 // watch for HDMI plug messages if the hdmi switch exists
4375 if (new File("/sys/devices/virtual/switch/hdmi/state").exists()) {
4376 mHDMIObserver.startObserving("DEVPATH=/devices/virtual/switch/hdmi");
4377
Joe Onoratoea495d42011-04-06 11:41:11 -07004378 final String filename = "/sys/class/switch/hdmi/state";
4379 FileReader reader = null;
4380 try {
4381 reader = new FileReader(filename);
4382 char[] buf = new char[15];
4383 int n = reader.read(buf);
4384 if (n > 1) {
4385 plugged = 0 != Integer.parseInt(new String(buf, 0, n-1));
4386 }
4387 } catch (IOException ex) {
4388 Slog.w(TAG, "Couldn't read hdmi state from " + filename + ": " + ex);
4389 } catch (NumberFormatException ex) {
4390 Slog.w(TAG, "Couldn't read hdmi state from " + filename + ": " + ex);
4391 } finally {
4392 if (reader != null) {
4393 try {
4394 reader.close();
4395 } catch (IOException ex) {
4396 }
Joe Onoratodc100302011-01-11 17:07:41 -08004397 }
4398 }
4399 }
Joe Onorato7ba631f2011-05-04 15:28:00 -07004400 // This dance forces the code in setHdmiPlugged to run.
4401 // Always do this so the sticky intent is stuck (to false) if there is no hdmi.
4402 mHdmiPlugged = !plugged;
4403 setHdmiPlugged(!mHdmiPlugged);
Joe Onoratodc100302011-01-11 17:07:41 -08004404 }
4405
Dianne Hackbornc0e3f242011-08-19 14:19:10 -07004406 final Object mScreenshotLock = new Object();
Dianne Hackbornfc8fa632011-08-17 16:20:47 -07004407 ServiceConnection mScreenshotConnection = null;
Dianne Hackbornfc8fa632011-08-17 16:20:47 -07004408
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004409 final Runnable mScreenshotTimeout = new Runnable() {
4410 @Override public void run() {
4411 synchronized (mScreenshotLock) {
4412 if (mScreenshotConnection != null) {
4413 mContext.unbindService(mScreenshotConnection);
4414 mScreenshotConnection = null;
Dianne Hackbornfc8fa632011-08-17 16:20:47 -07004415 }
Winson Chung9112ec32011-06-27 13:15:32 -07004416 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004417 }
4418 };
4419
4420 // Assume this is called from the Handler thread.
4421 private void takeScreenshot() {
4422 synchronized (mScreenshotLock) {
4423 if (mScreenshotConnection != null) {
4424 return;
4425 }
4426 ComponentName cn = new ComponentName("com.android.systemui",
4427 "com.android.systemui.screenshot.TakeScreenshotService");
4428 Intent intent = new Intent();
4429 intent.setComponent(cn);
4430 ServiceConnection conn = new ServiceConnection() {
4431 @Override
4432 public void onServiceConnected(ComponentName name, IBinder service) {
4433 synchronized (mScreenshotLock) {
4434 if (mScreenshotConnection != this) {
4435 return;
4436 }
4437 Messenger messenger = new Messenger(service);
4438 Message msg = Message.obtain(null, 1);
4439 final ServiceConnection myConn = this;
4440 Handler h = new Handler(mHandler.getLooper()) {
4441 @Override
4442 public void handleMessage(Message msg) {
4443 synchronized (mScreenshotLock) {
4444 if (mScreenshotConnection == myConn) {
4445 mContext.unbindService(mScreenshotConnection);
4446 mScreenshotConnection = null;
4447 mHandler.removeCallbacks(mScreenshotTimeout);
4448 }
4449 }
4450 }
4451 };
4452 msg.replyTo = new Messenger(h);
Winson Chunga63bb842011-10-17 10:26:28 -07004453 msg.arg1 = msg.arg2 = 0;
4454 if (mStatusBar != null && mStatusBar.isVisibleLw())
4455 msg.arg1 = 1;
4456 if (mNavigationBar != null && mNavigationBar.isVisibleLw())
4457 msg.arg2 = 1;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004458 try {
4459 messenger.send(msg);
4460 } catch (RemoteException e) {
4461 }
4462 }
4463 }
4464 @Override
4465 public void onServiceDisconnected(ComponentName name) {}
4466 };
Amith Yamasani27b89e62013-01-16 12:30:11 -08004467 if (mContext.bindServiceAsUser(
4468 intent, conn, Context.BIND_AUTO_CREATE, UserHandle.CURRENT)) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004469 mScreenshotConnection = conn;
4470 mHandler.postDelayed(mScreenshotTimeout, 10000);
4471 }
4472 }
Winson Chung9112ec32011-06-27 13:15:32 -07004473 }
4474
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004475 /** {@inheritDoc} */
Jeff Brown00fa7bd2010-07-02 15:37:36 -07004476 @Override
Jeff Brown037c33e2014-04-09 00:31:55 -07004477 public int interceptKeyBeforeQueueing(KeyEvent event, int policyFlags) {
Jeff Brown96307042012-07-27 15:51:34 -07004478 if (!mSystemBooted) {
4479 // If we have not yet booted, don't let key events do anything.
4480 return 0;
4481 }
4482
Jeff Brown037c33e2014-04-09 00:31:55 -07004483 final boolean interactive = (policyFlags & FLAG_INTERACTIVE) != 0;
Jeff Brown1f245102010-11-18 20:53:46 -08004484 final boolean down = event.getAction() == KeyEvent.ACTION_DOWN;
4485 final boolean canceled = event.isCanceled();
4486 final int keyCode = event.getKeyCode();
Jeff Browne20c9e02010-10-11 14:20:19 -07004487
Jeff Brown3122e442010-10-11 23:32:49 -07004488 final boolean isInjected = (policyFlags & WindowManagerPolicy.FLAG_INJECTED) != 0;
Jeff Brown3122e442010-10-11 23:32:49 -07004489
Mike Lockwoodc72b15f2009-11-28 20:58:22 -05004490 // If screen is off then we treat the case where the keyguard is open but hidden
4491 // the same as if it were open and in front.
4492 // This will prevent any keys other than the power button from waking the screen
4493 // when the keyguard is hidden by another activity.
Jim Miller5ecd8112013-01-09 18:50:26 -08004494 final boolean keyguardActive = (mKeyguardDelegate == null ? false :
Jeff Brown037c33e2014-04-09 00:31:55 -07004495 (interactive ?
Jim Millerab954542014-10-10 18:21:49 -07004496 isKeyguardShowingAndNotOccluded() :
Jim Miller5ecd8112013-01-09 18:50:26 -08004497 mKeyguardDelegate.isShowing()));
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004498
Jeff Brown40013652012-05-16 21:22:36 -07004499 if (DEBUG_INPUT) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07004500 Log.d(TAG, "interceptKeyTq keycode=" + keyCode
Jeff Brown037c33e2014-04-09 00:31:55 -07004501 + " interactive=" + interactive + " keyguardActive=" + keyguardActive
Jeff Brown26875502014-01-30 21:47:47 -08004502 + " policyFlags=" + Integer.toHexString(policyFlags));
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004503 }
4504
Jeff Brown037c33e2014-04-09 00:31:55 -07004505 // Basic policy based on interactive state.
Jeff Brown4d396052010-10-29 21:50:21 -07004506 int result;
Michael Wright337d9d22014-04-22 15:03:48 -07004507 boolean isWakeKey = (policyFlags & WindowManagerPolicy.FLAG_WAKE) != 0
4508 || event.isWakeKey();
Michael Wrightfc01f042014-09-08 14:12:24 -07004509 if (interactive || (isInjected && !isWakeKey)) {
RoboErikde9ba392014-09-26 12:51:01 -07004510 // When the device is interactive or the key is injected pass the
4511 // key to the application.
Jeff Brown4d396052010-10-29 21:50:21 -07004512 result = ACTION_PASS_TO_USER;
Jose Lima9546b202014-07-02 17:21:51 -07004513 isWakeKey = false;
Michael Wrightfc01f042014-09-08 14:12:24 -07004514 } else if (!interactive && shouldDispatchInputWhenNonInteractive()) {
4515 // If we're currently dozing with the screen on and the keyguard showing, pass the key
4516 // to the application but preserve its wake key status to make sure we still move
4517 // from dozing to fully interactive if we would normally go from off to fully
4518 // interactive.
4519 result = ACTION_PASS_TO_USER;
Jeff Brown4d396052010-10-29 21:50:21 -07004520 } else {
4521 // When the screen is off and the key is not injected, determine whether
4522 // to wake the device but don't pass the key to the application.
4523 result = 0;
Jeff Brown26875502014-01-30 21:47:47 -08004524 if (isWakeKey && (!down || !isWakeKeyWhenScreenOff(keyCode))) {
4525 isWakeKey = false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004526 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004527 }
4528
Justin Kohd378ad72013-04-01 12:18:26 -07004529 // If the key would be handled globally, just return the result, don't worry about special
4530 // key processing.
Jeff Brown13f00f02014-10-31 14:45:50 -07004531 if (isValidGlobalKey(keyCode)
4532 && mGlobalKeyManager.shouldHandleGlobalKey(keyCode, event)) {
Michael Wright85b1af62014-06-04 14:51:58 -07004533 if (isWakeKey) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004534 wakeUp(event.getEventTime(), mAllowTheaterModeWakeFromKey);
Michael Wright85b1af62014-06-04 14:51:58 -07004535 }
Justin Kohd378ad72013-04-01 12:18:26 -07004536 return result;
4537 }
4538
Jeff Brownbae8e772014-06-12 19:59:45 -07004539 boolean useHapticFeedback = down
4540 && (policyFlags & WindowManagerPolicy.FLAG_VIRTUAL) != 0
4541 && event.getRepeatCount() == 0;
4542
Jeff Brown4d396052010-10-29 21:50:21 -07004543 // Handle special keys.
4544 switch (keyCode) {
4545 case KeyEvent.KEYCODE_VOLUME_DOWN:
Jeff Brownb0418da2010-11-01 15:24:01 -07004546 case KeyEvent.KEYCODE_VOLUME_UP:
4547 case KeyEvent.KEYCODE_VOLUME_MUTE: {
RoboErik001c59c2015-01-26 15:53:51 -08004548 if (mUseTvRouting) {
4549 // On TVs volume keys never go to the foreground app
4550 result &= ~ACTION_PASS_TO_USER;
4551 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004552 if (keyCode == KeyEvent.KEYCODE_VOLUME_DOWN) {
4553 if (down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004554 if (interactive && !mScreenshotChordVolumeDownKeyTriggered
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004555 && (event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004556 mScreenshotChordVolumeDownKeyTriggered = true;
4557 mScreenshotChordVolumeDownKeyTime = event.getDownTime();
4558 mScreenshotChordVolumeDownKeyConsumed = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004559 cancelPendingPowerKeyAction();
4560 interceptScreenshotChord();
4561 }
4562 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07004563 mScreenshotChordVolumeDownKeyTriggered = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004564 cancelPendingScreenshotChordAction();
4565 }
4566 } else if (keyCode == KeyEvent.KEYCODE_VOLUME_UP) {
4567 if (down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004568 if (interactive && !mScreenshotChordVolumeUpKeyTriggered
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004569 && (event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004570 mScreenshotChordVolumeUpKeyTriggered = true;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004571 cancelPendingPowerKeyAction();
4572 cancelPendingScreenshotChordAction();
4573 }
4574 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07004575 mScreenshotChordVolumeUpKeyTriggered = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004576 cancelPendingScreenshotChordAction();
4577 }
4578 }
Jeff Brown4d396052010-10-29 21:50:21 -07004579 if (down) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07004580 TelecomManager telecomManager = getTelecommService();
4581 if (telecomManager != null) {
4582 if (telecomManager.isRinging()) {
Santos Cordon6848f722014-05-21 15:22:12 -07004583 // If an incoming call is ringing, either VOLUME key means
4584 // "silence ringer". We handle these keys here, rather than
4585 // in the InCallScreen, to make sure we'll respond to them
4586 // even if the InCallScreen hasn't come to the foreground yet.
4587 // Look for the DOWN event here, to agree with the "fallback"
4588 // behavior in the InCallScreen.
4589 Log.i(TAG, "interceptKeyBeforeQueueing:"
4590 + " VOLUME key-down while ringing: Silence ringer!");
Jeff Brown4d396052010-10-29 21:50:21 -07004591
Santos Cordon6848f722014-05-21 15:22:12 -07004592 // Silence the ringer. (It's safe to call this
4593 // even if the ringer has already been silenced.)
Tyler Gunnef9f6f92014-09-12 22:16:17 -07004594 telecomManager.silenceRinger();
Jeff Brown4d396052010-10-29 21:50:21 -07004595
Santos Cordon6848f722014-05-21 15:22:12 -07004596 // And *don't* pass this key thru to the current activity
4597 // (which is probably the InCallScreen.)
4598 result &= ~ACTION_PASS_TO_USER;
4599 break;
4600 }
Tyler Gunnef9f6f92014-09-12 22:16:17 -07004601 if (telecomManager.isInCall()
Santos Cordon6848f722014-05-21 15:22:12 -07004602 && (result & ACTION_PASS_TO_USER) == 0) {
4603 // If we are in call but we decided not to pass the key to
RoboErik430fc482014-06-12 15:49:20 -07004604 // the application, just pass it to the session service.
4605
4606 MediaSessionLegacyHelper.getHelper(mContext)
RoboErik3c45c292014-07-08 16:47:31 -07004607 .sendVolumeKeyEvent(event, false);
Santos Cordon6848f722014-05-21 15:22:12 -07004608 break;
Jeff Brown4d396052010-10-29 21:50:21 -07004609 }
4610 }
4611
RoboErik430fc482014-06-12 15:49:20 -07004612 if ((result & ACTION_PASS_TO_USER) == 0) {
RoboErik001c59c2015-01-26 15:53:51 -08004613 if (mUseTvRouting) {
4614 dispatchDirectAudioEvent(event);
4615 } else {
4616 // If we aren't passing to the user and no one else
4617 // handled it send it to the session manager to
4618 // figure out.
4619 MediaSessionLegacyHelper.getHelper(mContext)
4620 .sendVolumeKeyEvent(event, true);
4621 }
Jeff Brown4d396052010-10-29 21:50:21 -07004622 break;
4623 }
4624 }
4625 break;
4626 }
4627
4628 case KeyEvent.KEYCODE_ENDCALL: {
4629 result &= ~ACTION_PASS_TO_USER;
4630 if (down) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07004631 TelecomManager telecomManager = getTelecommService();
Jeff Brown4d396052010-10-29 21:50:21 -07004632 boolean hungUp = false;
Tyler Gunnef9f6f92014-09-12 22:16:17 -07004633 if (telecomManager != null) {
4634 hungUp = telecomManager.endCall();
Jeff Brown4d396052010-10-29 21:50:21 -07004635 }
Jeff Brown13f00f02014-10-31 14:45:50 -07004636 if (interactive && !hungUp) {
4637 mEndCallKeyHandled = false;
4638 mHandler.postDelayed(mEndCallLongPress,
4639 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
4640 } else {
4641 mEndCallKeyHandled = true;
4642 }
Jeff Brown4d396052010-10-29 21:50:21 -07004643 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07004644 if (!mEndCallKeyHandled) {
4645 mHandler.removeCallbacks(mEndCallLongPress);
4646 if (!canceled) {
4647 if ((mEndcallBehavior
4648 & Settings.System.END_BUTTON_BEHAVIOR_HOME) != 0) {
4649 if (goHome()) {
4650 break;
4651 }
Dianne Hackborn0041e972009-07-24 17:14:43 -07004652 }
Jeff Brown13f00f02014-10-31 14:45:50 -07004653 if ((mEndcallBehavior
4654 & Settings.System.END_BUTTON_BEHAVIOR_SLEEP) != 0) {
4655 mPowerManager.goToSleep(event.getEventTime(),
4656 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON, 0);
4657 isWakeKey = false;
4658 }
Jeff Brown4d396052010-10-29 21:50:21 -07004659 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004660 }
Jeff Brown4d396052010-10-29 21:50:21 -07004661 }
4662 break;
4663 }
4664
4665 case KeyEvent.KEYCODE_POWER: {
4666 result &= ~ACTION_PASS_TO_USER;
Jeff Brown13f00f02014-10-31 14:45:50 -07004667 isWakeKey = false; // wake-up will be handled separately
Jeff Brown4d396052010-10-29 21:50:21 -07004668 if (down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004669 interceptPowerKeyDown(event, interactive);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004670 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07004671 interceptPowerKeyUp(event, interactive, canceled);
Jeff Brown4d396052010-10-29 21:50:21 -07004672 }
4673 break;
4674 }
4675
Jeff Brown6212a492014-03-07 13:58:47 -08004676 case KeyEvent.KEYCODE_SLEEP: {
4677 result &= ~ACTION_PASS_TO_USER;
Jeff Brownbae8e772014-06-12 19:59:45 -07004678 if (!mPowerManager.isInteractive()) {
4679 useHapticFeedback = false; // suppress feedback if already non-interactive
4680 }
Jeff Brownc12035c2014-08-13 18:52:25 -07004681 mPowerManager.goToSleep(event.getEventTime(),
4682 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON, 0);
Jeff Brown6212a492014-03-07 13:58:47 -08004683 isWakeKey = false;
4684 break;
4685 }
4686
4687 case KeyEvent.KEYCODE_WAKEUP: {
4688 result &= ~ACTION_PASS_TO_USER;
Jose Lima9546b202014-07-02 17:21:51 -07004689 isWakeKey = true;
Jeff Brown6212a492014-03-07 13:58:47 -08004690 break;
4691 }
4692
Jeff Brown4d396052010-10-29 21:50:21 -07004693 case KeyEvent.KEYCODE_MEDIA_PLAY:
4694 case KeyEvent.KEYCODE_MEDIA_PAUSE:
4695 case KeyEvent.KEYCODE_MEDIA_PLAY_PAUSE:
Jeff Brown4d396052010-10-29 21:50:21 -07004696 case KeyEvent.KEYCODE_HEADSETHOOK:
4697 case KeyEvent.KEYCODE_MUTE:
4698 case KeyEvent.KEYCODE_MEDIA_STOP:
4699 case KeyEvent.KEYCODE_MEDIA_NEXT:
4700 case KeyEvent.KEYCODE_MEDIA_PREVIOUS:
4701 case KeyEvent.KEYCODE_MEDIA_REWIND:
4702 case KeyEvent.KEYCODE_MEDIA_RECORD:
Jaekyun Seokbfdad8e2013-07-08 13:53:21 +09004703 case KeyEvent.KEYCODE_MEDIA_FAST_FORWARD:
4704 case KeyEvent.KEYCODE_MEDIA_AUDIO_TRACK: {
RoboErikde9ba392014-09-26 12:51:01 -07004705 if (MediaSessionLegacyHelper.getHelper(mContext).isGlobalPriorityActive()) {
4706 // If the global session is active pass all media keys to it
4707 // instead of the active window.
4708 result &= ~ACTION_PASS_TO_USER;
4709 }
Jeff Brown4d396052010-10-29 21:50:21 -07004710 if ((result & ACTION_PASS_TO_USER) == 0) {
4711 // Only do this if we would otherwise not pass it to the user. In that
4712 // case, the PhoneWindow class will do the same thing, except it will
4713 // only do it if the showing app doesn't process the key on its own.
Jeff Brown40013652012-05-16 21:22:36 -07004714 // Note that we need to make a copy of the key event here because the
4715 // original key event will be recycled when we return.
Jeff Brown4d396052010-10-29 21:50:21 -07004716 mBroadcastWakeLock.acquire();
Jeff Brown40013652012-05-16 21:22:36 -07004717 Message msg = mHandler.obtainMessage(MSG_DISPATCH_MEDIA_KEY_WITH_WAKE_LOCK,
4718 new KeyEvent(event));
4719 msg.setAsynchronous(true);
4720 msg.sendToTarget();
Jeff Brown4d396052010-10-29 21:50:21 -07004721 }
4722 break;
Jeff Brown00fa7bd2010-07-02 15:37:36 -07004723 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004724
Jeff Brown4d396052010-10-29 21:50:21 -07004725 case KeyEvent.KEYCODE_CALL: {
4726 if (down) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07004727 TelecomManager telecomManager = getTelecommService();
4728 if (telecomManager != null) {
4729 if (telecomManager.isRinging()) {
Santos Cordon6848f722014-05-21 15:22:12 -07004730 Log.i(TAG, "interceptKeyBeforeQueueing:"
4731 + " CALL key-down while ringing: Answer the call!");
Tyler Gunnef9f6f92014-09-12 22:16:17 -07004732 telecomManager.acceptRingingCall();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004733
Santos Cordon6848f722014-05-21 15:22:12 -07004734 // And *don't* pass this key thru to the current activity
4735 // (which is presumably the InCallScreen.)
4736 result &= ~ACTION_PASS_TO_USER;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004737 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004738 }
Jeff Brown00fa7bd2010-07-02 15:37:36 -07004739 }
Jeff Brown4d396052010-10-29 21:50:21 -07004740 break;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004741 }
Michael Wright869a67c2014-08-26 19:33:06 -07004742 case KeyEvent.KEYCODE_VOICE_ASSIST: {
4743 // Only do this if we would otherwise not pass it to the user. In that case,
4744 // interceptKeyBeforeDispatching would apply a similar but different policy in
4745 // order to invoke voice assist actions. Note that we need to make a copy of the
4746 // key event here because the original key event will be recycled when we return.
4747 if ((result & ACTION_PASS_TO_USER) == 0 && !down) {
4748 mBroadcastWakeLock.acquire();
4749 Message msg = mHandler.obtainMessage(MSG_LAUNCH_VOICE_ASSIST_WITH_WAKE_LOCK,
4750 keyguardActive ? 1 : 0, 0);
4751 msg.setAsynchronous(true);
4752 msg.sendToTarget();
4753 }
Henrik Baardaa5c5e32015-02-03 09:25:28 +01004754 break;
Michael Wright869a67c2014-08-26 19:33:06 -07004755 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004756 }
Jeff Brown26875502014-01-30 21:47:47 -08004757
Jeff Brownbae8e772014-06-12 19:59:45 -07004758 if (useHapticFeedback) {
4759 performHapticFeedbackLw(null, HapticFeedbackConstants.VIRTUAL_KEY, false);
4760 }
4761
Jeff Brown26875502014-01-30 21:47:47 -08004762 if (isWakeKey) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004763 wakeUp(event.getEventTime(), mAllowTheaterModeWakeFromKey);
Jeff Brown26875502014-01-30 21:47:47 -08004764 }
Bryce Lee584a4452014-10-21 15:55:55 -07004765
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004766 return result;
4767 }
4768
Jeff Brown1c2e4942012-11-06 16:32:01 -08004769 /**
Jeff Brown13f00f02014-10-31 14:45:50 -07004770 * Returns true if the key can have global actions attached to it.
4771 * We reserve all power management keys for the system since they require
4772 * very careful handling.
4773 */
4774 private static boolean isValidGlobalKey(int keyCode) {
4775 switch (keyCode) {
4776 case KeyEvent.KEYCODE_POWER:
4777 case KeyEvent.KEYCODE_WAKEUP:
4778 case KeyEvent.KEYCODE_SLEEP:
4779 return false;
4780 default:
4781 return true;
4782 }
4783 }
4784
4785 /**
Jeff Brown1c2e4942012-11-06 16:32:01 -08004786 * When the screen is off we ignore some keys that might otherwise typically
4787 * be considered wake keys. We filter them out here.
4788 *
4789 * {@link KeyEvent#KEYCODE_POWER} is notably absent from this list because it
4790 * is always considered a wake key.
4791 */
4792 private boolean isWakeKeyWhenScreenOff(int keyCode) {
4793 switch (keyCode) {
4794 // ignore volume keys unless docked
4795 case KeyEvent.KEYCODE_VOLUME_UP:
4796 case KeyEvent.KEYCODE_VOLUME_DOWN:
4797 case KeyEvent.KEYCODE_VOLUME_MUTE:
4798 return mDockMode != Intent.EXTRA_DOCK_STATE_UNDOCKED;
4799
4800 // ignore media and camera keys
4801 case KeyEvent.KEYCODE_MUTE:
4802 case KeyEvent.KEYCODE_HEADSETHOOK:
4803 case KeyEvent.KEYCODE_MEDIA_PLAY:
4804 case KeyEvent.KEYCODE_MEDIA_PAUSE:
4805 case KeyEvent.KEYCODE_MEDIA_PLAY_PAUSE:
4806 case KeyEvent.KEYCODE_MEDIA_STOP:
4807 case KeyEvent.KEYCODE_MEDIA_NEXT:
4808 case KeyEvent.KEYCODE_MEDIA_PREVIOUS:
4809 case KeyEvent.KEYCODE_MEDIA_REWIND:
4810 case KeyEvent.KEYCODE_MEDIA_RECORD:
4811 case KeyEvent.KEYCODE_MEDIA_FAST_FORWARD:
Jaekyun Seokbfdad8e2013-07-08 13:53:21 +09004812 case KeyEvent.KEYCODE_MEDIA_AUDIO_TRACK:
Jeff Brown1c2e4942012-11-06 16:32:01 -08004813 case KeyEvent.KEYCODE_CAMERA:
4814 return false;
4815 }
4816 return true;
4817 }
4818
4819
Jeff Brown56194eb2011-03-02 19:23:13 -08004820 /** {@inheritDoc} */
4821 @Override
Michael Wright70af00a2014-09-03 19:30:20 -07004822 public int interceptMotionBeforeQueueingNonInteractive(long whenNanos, int policyFlags) {
4823 if ((policyFlags & FLAG_WAKE) != 0) {
Bryce Lee5c138322014-11-03 08:26:09 -08004824 if (wakeUp(whenNanos / 1000000, mAllowTheaterModeWakeFromMotion)) {
4825 return 0;
4826 }
Michael Wright70af00a2014-09-03 19:30:20 -07004827 }
Bryce Lee5c138322014-11-03 08:26:09 -08004828
Michael Wright70af00a2014-09-03 19:30:20 -07004829 if (shouldDispatchInputWhenNonInteractive()) {
4830 return ACTION_PASS_TO_USER;
4831 }
Bryce Lee5c138322014-11-03 08:26:09 -08004832
Bryce Lee812d7022014-11-10 13:33:28 -08004833 // If we have not passed the action up and we are in theater mode without dreaming,
4834 // there will be no dream to intercept the touch and wake into ambient. The device should
4835 // wake up in this case.
4836 if (isTheaterModeEnabled() && (policyFlags & FLAG_WAKE) != 0) {
4837 wakeUp(whenNanos / 1000000, mAllowTheaterModeWakeFromMotionWhenNotDreaming);
4838 }
4839
Jeff Brown037c33e2014-04-09 00:31:55 -07004840 return 0;
Jeff Brown56194eb2011-03-02 19:23:13 -08004841 }
4842
Michael Wright70af00a2014-09-03 19:30:20 -07004843 private boolean shouldDispatchInputWhenNonInteractive() {
Bryce Lee5c138322014-11-03 08:26:09 -08004844 // Send events to keyguard while the screen is on.
Jim Millerab954542014-10-10 18:21:49 -07004845 if (isKeyguardShowingAndNotOccluded() && mDisplay != null
4846 && mDisplay.getState() != Display.STATE_OFF) {
Bryce Lee5c138322014-11-03 08:26:09 -08004847 return true;
4848 }
4849
4850 // Send events to a dozing dream even if the screen is off since the dream
4851 // is in control of the state of the screen.
4852 IDreamManager dreamManager = getDreamManager();
4853
4854 try {
4855 if (dreamManager != null && dreamManager.isDreaming()) {
4856 return true;
4857 }
4858 } catch (RemoteException e) {
4859 Slog.e(TAG, "RemoteException when checking if dreaming", e);
4860 }
4861
4862 // Otherwise, consume events since the user can't see what is being
4863 // interacted with.
4864 return false;
Michael Wright70af00a2014-09-03 19:30:20 -07004865 }
4866
RoboErik001c59c2015-01-26 15:53:51 -08004867 private void dispatchDirectAudioEvent(KeyEvent event) {
4868 if (event.getAction() != KeyEvent.ACTION_DOWN) {
4869 return;
4870 }
4871 int keyCode = event.getKeyCode();
4872 int flags = AudioManager.FLAG_SHOW_UI | AudioManager.FLAG_PLAY_SOUND;
4873 String pkgName = mContext.getOpPackageName();
4874 switch (keyCode) {
4875 case KeyEvent.KEYCODE_VOLUME_UP:
4876 try {
4877 if (mUseMasterVolume) {
4878 getAudioService().adjustMasterVolume(AudioManager.ADJUST_RAISE, flags,
4879 pkgName);
4880 } else {
4881 getAudioService().adjustSuggestedStreamVolume(AudioManager.ADJUST_RAISE,
4882 AudioManager.USE_DEFAULT_STREAM_TYPE, flags, pkgName);
4883 }
4884 } catch (RemoteException e) {
4885 Log.e(TAG, "Error dispatching volume up in dispatchTvAudioEvent.", e);
4886 }
4887 break;
4888 case KeyEvent.KEYCODE_VOLUME_DOWN:
4889 try {
4890 if (mUseMasterVolume) {
4891 getAudioService().adjustMasterVolume(AudioManager.ADJUST_LOWER, flags,
4892 pkgName);
4893 } else {
4894 getAudioService().adjustSuggestedStreamVolume(AudioManager.ADJUST_LOWER,
4895 AudioManager.USE_DEFAULT_STREAM_TYPE, flags, pkgName);
4896 }
4897 } catch (RemoteException e) {
4898 Log.e(TAG, "Error dispatching volume down in dispatchTvAudioEvent.", e);
4899 }
4900 break;
4901 case KeyEvent.KEYCODE_VOLUME_MUTE:
4902 try {
4903 if (event.getRepeatCount() == 0) {
4904 if (mUseMasterVolume) {
4905 getAudioService().adjustMasterVolume(AudioManager.ADJUST_TOGGLE_MUTE,
4906 flags, pkgName);
4907 } else {
4908 getAudioService().adjustSuggestedStreamVolume(
4909 AudioManager.ADJUST_TOGGLE_MUTE,
4910 AudioManager.USE_DEFAULT_STREAM_TYPE, flags, pkgName);
4911 }
4912 }
4913 } catch (RemoteException e) {
4914 Log.e(TAG, "Error dispatching mute in dispatchTvAudioEvent.", e);
4915 }
4916 break;
4917 }
4918 }
4919
Jeff Brown40013652012-05-16 21:22:36 -07004920 void dispatchMediaKeyWithWakeLock(KeyEvent event) {
4921 if (DEBUG_INPUT) {
4922 Slog.d(TAG, "dispatchMediaKeyWithWakeLock: " + event);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004923 }
4924
Jeff Brown40013652012-05-16 21:22:36 -07004925 if (mHavePendingMediaKeyRepeatWithWakeLock) {
4926 if (DEBUG_INPUT) {
4927 Slog.d(TAG, "dispatchMediaKeyWithWakeLock: canceled repeat");
4928 }
4929
4930 mHandler.removeMessages(MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK);
4931 mHavePendingMediaKeyRepeatWithWakeLock = false;
4932 mBroadcastWakeLock.release(); // pending repeat was holding onto the wake lock
4933 }
4934
4935 dispatchMediaKeyWithWakeLockToAudioService(event);
4936
4937 if (event.getAction() == KeyEvent.ACTION_DOWN
4938 && event.getRepeatCount() == 0) {
4939 mHavePendingMediaKeyRepeatWithWakeLock = true;
4940
4941 Message msg = mHandler.obtainMessage(
4942 MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK, event);
4943 msg.setAsynchronous(true);
4944 mHandler.sendMessageDelayed(msg, ViewConfiguration.getKeyRepeatTimeout());
4945 } else {
4946 mBroadcastWakeLock.release();
4947 }
4948 }
4949
4950 void dispatchMediaKeyRepeatWithWakeLock(KeyEvent event) {
4951 mHavePendingMediaKeyRepeatWithWakeLock = false;
4952
4953 KeyEvent repeatEvent = KeyEvent.changeTimeRepeat(event,
4954 SystemClock.uptimeMillis(), 1, event.getFlags() | KeyEvent.FLAG_LONG_PRESS);
4955 if (DEBUG_INPUT) {
4956 Slog.d(TAG, "dispatchMediaKeyRepeatWithWakeLock: " + repeatEvent);
4957 }
4958
4959 dispatchMediaKeyWithWakeLockToAudioService(repeatEvent);
4960 mBroadcastWakeLock.release();
4961 }
4962
4963 void dispatchMediaKeyWithWakeLockToAudioService(KeyEvent event) {
4964 if (ActivityManagerNative.isSystemReady()) {
RoboErik430fc482014-06-12 15:49:20 -07004965 MediaSessionLegacyHelper.getHelper(mContext).sendMediaButtonEvent(event, true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004966 }
4967 }
4968
Michael Wright869a67c2014-08-26 19:33:06 -07004969 void launchVoiceAssistWithWakeLock(boolean keyguardActive) {
4970 Intent voiceIntent =
4971 new Intent(RecognizerIntent.ACTION_VOICE_SEARCH_HANDS_FREE);
4972 voiceIntent.putExtra(RecognizerIntent.EXTRA_SECURE, keyguardActive);
4973 mContext.startActivityAsUser(voiceIntent, UserHandle.CURRENT_OR_SELF);
4974 mBroadcastWakeLock.release();
4975 }
4976
Mike Lockwood1753f7f2009-08-24 14:49:07 -07004977 BroadcastReceiver mDockReceiver = new BroadcastReceiver() {
Craig Mautnereee29c42013-01-17 14:44:34 -08004978 @Override
Mike Lockwood1753f7f2009-08-24 14:49:07 -07004979 public void onReceive(Context context, Intent intent) {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07004980 if (Intent.ACTION_DOCK_EVENT.equals(intent.getAction())) {
4981 mDockMode = intent.getIntExtra(Intent.EXTRA_DOCK_STATE,
4982 Intent.EXTRA_DOCK_STATE_UNDOCKED);
Daniel Sandler6396c722013-04-16 20:19:09 -04004983 } else {
4984 try {
4985 IUiModeManager uiModeService = IUiModeManager.Stub.asInterface(
4986 ServiceManager.getService(Context.UI_MODE_SERVICE));
4987 mUiMode = uiModeService.getCurrentModeType();
4988 } catch (RemoteException e) {
4989 }
Dianne Hackborn80fa1662009-10-07 14:02:10 -07004990 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07004991 updateRotation(true);
Craig Mautnereee29c42013-01-17 14:44:34 -08004992 synchronized (mLock) {
4993 updateOrientationListenerLp();
4994 }
Mike Lockwood1753f7f2009-08-24 14:49:07 -07004995 }
4996 };
4997
Jeff Brown6aaf2952012-10-05 16:01:08 -07004998 BroadcastReceiver mDreamReceiver = new BroadcastReceiver() {
4999 @Override
5000 public void onReceive(Context context, Intent intent) {
5001 if (Intent.ACTION_DREAMING_STARTED.equals(intent.getAction())) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005002 if (mKeyguardDelegate != null) {
5003 mKeyguardDelegate.onDreamingStarted();
Jeff Brown6aaf2952012-10-05 16:01:08 -07005004 }
5005 } else if (Intent.ACTION_DREAMING_STOPPED.equals(intent.getAction())) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005006 if (mKeyguardDelegate != null) {
5007 mKeyguardDelegate.onDreamingStopped();
Jeff Brown6aaf2952012-10-05 16:01:08 -07005008 }
5009 }
5010 }
5011 };
5012
Christopher Tate5e08af02012-09-21 17:17:22 -07005013 BroadcastReceiver mMultiuserReceiver = new BroadcastReceiver() {
5014 @Override
5015 public void onReceive(Context context, Intent intent) {
5016 if (Intent.ACTION_USER_SWITCHED.equals(intent.getAction())) {
5017 // tickle the settings observer: this first ensures that we're
5018 // observing the relevant settings for the newly-active user,
5019 // and then updates our own bookkeeping based on the now-
5020 // current user.
5021 mSettingsObserver.onChange(false);
John Spurlockce479d82012-11-29 09:52:21 -05005022
5023 // force a re-application of focused window sysui visibility.
5024 // the window may never have been shown for this user
5025 // e.g. the keyguard when going through the new-user setup flow
John Spurlock04db1762013-05-13 12:46:41 -04005026 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
John Spurlockce479d82012-11-29 09:52:21 -05005027 mLastSystemUiFlags = 0;
5028 updateSystemUiVisibilityLw();
5029 }
Christopher Tate5e08af02012-09-21 17:17:22 -07005030 }
5031 }
5032 };
5033
John Spurlockd9b70bd2014-02-06 17:02:44 -05005034 private final Runnable mRequestTransientNav = new Runnable() {
5035 @Override
5036 public void run() {
5037 requestTransientBars(mNavigationBar);
5038 }
5039 };
5040
John Spurlocke1f366f2013-08-05 12:22:40 -04005041 private void requestTransientBars(WindowState swipeTarget) {
John Spurlock04db1762013-05-13 12:46:41 -04005042 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
Maurice Lam99c6e072014-04-28 18:24:28 -07005043 if (!isUserSetupComplete()) {
5044 // Swipe-up for navigation bar is disabled during setup
5045 return;
5046 }
John Spurlock27735a42013-08-14 17:57:38 -04005047 boolean sb = mStatusBarController.checkShowTransientBarLw();
5048 boolean nb = mNavigationBarController.checkShowTransientBarLw();
John Spurlockad3e6cb2013-04-30 08:47:43 -04005049 if (sb || nb) {
John Spurlocke1f366f2013-08-05 12:22:40 -04005050 WindowState barTarget = sb ? mStatusBar : mNavigationBar;
5051 if (sb ^ nb && barTarget != swipeTarget) {
5052 if (DEBUG) Slog.d(TAG, "Not showing transient bar, wrong swipe target");
John Spurlockad3e6cb2013-04-30 08:47:43 -04005053 return;
5054 }
John Spurlock27735a42013-08-14 17:57:38 -04005055 if (sb) mStatusBarController.showTransient();
5056 if (nb) mNavigationBarController.showTransient();
John Spurlockf1a36642013-10-12 17:50:42 -04005057 mImmersiveModeConfirmation.confirmCurrentPrompt();
John Spurlockad3e6cb2013-04-30 08:47:43 -04005058 updateSystemUiVisibilityLw();
John Spurlock32beb2c2013-03-11 10:16:47 -04005059 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04005060 }
5061 }
5062
Jeff Brown3ee549c2014-09-22 20:14:39 -07005063 // Called on the PowerManager's Notifier thread.
Jeff Brownc38c9be2012-10-04 13:16:19 -07005064 @Override
Jeff Brown140ffc72014-05-01 15:18:00 -07005065 public void goingToSleep(int why) {
Dianne Hackborn74489012009-03-24 20:50:09 -07005066 EventLog.writeEvent(70000, 0);
Jeff Brown36c4db82014-09-19 12:05:31 -07005067 if (DEBUG_WAKEUP) Slog.i(TAG, "Going to sleep...");
Jeff Brown3ee549c2014-09-22 20:14:39 -07005068
5069 // We must get this work done here because the power manager will drop
5070 // the wake lock and let the system suspend once this function returns.
The Android Open Source Project0727d222009-03-11 12:11:58 -07005071 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005072 mAwake = false;
5073 mKeyguardDrawComplete = false;
Jeff Browna20dda42014-05-27 20:57:24 -07005074 updateWakeGestureListenerLp();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005075 updateOrientationListenerLp();
Mike Lockwood28569302010-01-28 11:54:40 -05005076 updateLockScreenTimeout();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005077 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005078
5079 if (mKeyguardDelegate != null) {
5080 mKeyguardDelegate.onScreenTurnedOff(why);
5081 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005082 }
5083
Jeff Brown13f00f02014-10-31 14:45:50 -07005084 private void wakeUpFromPowerKey(long eventTime) {
5085 wakeUp(eventTime, mAllowTheaterModeWakeFromPowerKey);
5086 }
5087
Bryce Lee5c138322014-11-03 08:26:09 -08005088 private boolean wakeUp(long wakeTime, boolean wakeInTheaterMode) {
Bryce Lee584a4452014-10-21 15:55:55 -07005089 if (!wakeInTheaterMode && isTheaterModeEnabled()) {
Bryce Lee5c138322014-11-03 08:26:09 -08005090 return false;
Bryce Lee584a4452014-10-21 15:55:55 -07005091 }
5092
5093 mPowerManager.wakeUp(wakeTime);
Bryce Lee5c138322014-11-03 08:26:09 -08005094 return true;
Bryce Lee584a4452014-10-21 15:55:55 -07005095 }
5096
Jeff Brown3ee549c2014-09-22 20:14:39 -07005097 // Called on the PowerManager's Notifier thread.
Jeff Brownc38c9be2012-10-04 13:16:19 -07005098 @Override
Jeff Brown36c4db82014-09-19 12:05:31 -07005099 public void wakingUp() {
Dianne Hackborn74489012009-03-24 20:50:09 -07005100 EventLog.writeEvent(70000, 1);
Jeff Brown36c4db82014-09-19 12:05:31 -07005101 if (DEBUG_WAKEUP) Slog.i(TAG, "Waking up...");
Craig Mautner8a0da012014-05-31 15:13:37 -07005102
Jeff Brown3ee549c2014-09-22 20:14:39 -07005103 // Since goToSleep performs these functions synchronously, we must
5104 // do the same here. We cannot post this work to a handler because
5105 // that might cause it to become reordered with respect to what
5106 // may happen in a future call to goToSleep.
The Android Open Source Project0727d222009-03-11 12:11:58 -07005107 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005108 mAwake = true;
5109 mKeyguardDrawComplete = false;
5110 if (mKeyguardDelegate != null) {
5111 mHandler.removeMessages(MSG_KEYGUARD_DRAWN_TIMEOUT);
5112 mHandler.sendEmptyMessageDelayed(MSG_KEYGUARD_DRAWN_TIMEOUT, 1000);
5113 }
5114
Jeff Browna20dda42014-05-27 20:57:24 -07005115 updateWakeGestureListenerLp();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005116 updateOrientationListenerLp();
Mike Lockwood28569302010-01-28 11:54:40 -05005117 updateLockScreenTimeout();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005118 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005119
Jim Miller5ecd8112013-01-09 18:50:26 -08005120 if (mKeyguardDelegate != null) {
Craig Mautner8a0da012014-05-31 15:13:37 -07005121 mKeyguardDelegate.onScreenTurnedOn(mKeyguardDelegateCallback);
Jeff Brown36c4db82014-09-19 12:05:31 -07005122 // ... eventually calls finishKeyguardDrawn
Jeff Brownc38c9be2012-10-04 13:16:19 -07005123 } else {
Craig Mautner8a0da012014-05-31 15:13:37 -07005124 if (DEBUG_WAKEUP) Slog.d(TAG, "null mKeyguardDelegate: setting mKeyguardDrawComplete.");
Jeff Brown36c4db82014-09-19 12:05:31 -07005125 finishKeyguardDrawn();
Jeff Brownc38c9be2012-10-04 13:16:19 -07005126 }
Jeff Brown36c4db82014-09-19 12:05:31 -07005127 }
5128
Jeff Brown36c4db82014-09-19 12:05:31 -07005129 private void finishKeyguardDrawn() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005130 synchronized (mLock) {
5131 if (!mAwake || mKeyguardDrawComplete) {
5132 return; // spurious
5133 }
5134
Jeff Brown36c4db82014-09-19 12:05:31 -07005135 mKeyguardDrawComplete = true;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005136 if (mKeyguardDelegate != null) {
5137 mHandler.removeMessages(MSG_KEYGUARD_DRAWN_TIMEOUT);
5138 }
5139 }
5140
5141 finishScreenTurningOn();
5142 }
5143
5144 // Called on the DisplayManager's DisplayPowerController thread.
5145 @Override
5146 public void screenTurnedOff() {
5147 if (DEBUG_WAKEUP) Slog.i(TAG, "Screen turned off...");
5148
5149 synchronized (mLock) {
5150 mScreenOnEarly = false;
5151 mScreenOnFully = false;
5152 mWindowManagerDrawComplete = false;
5153 mScreenOnListener = null;
5154 updateOrientationListenerLp();
Jeff Brown36c4db82014-09-19 12:05:31 -07005155 }
5156 }
5157
Jeff Brown3ee549c2014-09-22 20:14:39 -07005158 // Called on the DisplayManager's DisplayPowerController thread.
Jeff Brown36c4db82014-09-19 12:05:31 -07005159 @Override
5160 public void screenTurningOn(final ScreenOnListener screenOnListener) {
Jeff Brown36c4db82014-09-19 12:05:31 -07005161 if (DEBUG_WAKEUP) Slog.i(TAG, "Screen turning on...");
Jeff Brown36c4db82014-09-19 12:05:31 -07005162
Jeff Brown3ee549c2014-09-22 20:14:39 -07005163 synchronized (mLock) {
5164 mScreenOnEarly = true;
5165 mScreenOnFully = false;
5166 mWindowManagerDrawComplete = false;
5167 mScreenOnListener = screenOnListener;
5168 updateOrientationListenerLp();
5169 }
Jeff Brown36c4db82014-09-19 12:05:31 -07005170
Craig Mautnerc3daedd2014-09-13 11:17:23 -07005171 mWindowManagerInternal.waitForAllWindowsDrawn(mWindowManagerDrawCallback,
5172 WAITING_FOR_DRAWN_TIMEOUT);
Jeff Brown36c4db82014-09-19 12:05:31 -07005173 // ... eventually calls finishWindowsDrawn
5174 }
5175
Jeff Brown36c4db82014-09-19 12:05:31 -07005176 private void finishWindowsDrawn() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005177 synchronized (mLock) {
5178 if (!mScreenOnEarly || mWindowManagerDrawComplete) {
5179 return; // spurious
5180 }
5181
Jeff Brown36c4db82014-09-19 12:05:31 -07005182 mWindowManagerDrawComplete = true;
Jeff Brown36c4db82014-09-19 12:05:31 -07005183 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005184
5185 finishScreenTurningOn();
Jeff Brownc38c9be2012-10-04 13:16:19 -07005186 }
5187
Craig Mautner8a0da012014-05-31 15:13:37 -07005188 private void finishScreenTurningOn() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005189 final ScreenOnListener listener;
5190 final boolean enableScreen;
Jeff Brown36c4db82014-09-19 12:05:31 -07005191 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005192 if (DEBUG_WAKEUP) Slog.d(TAG,
5193 "finishScreenTurningOn: mAwake=" + mAwake
5194 + ", mScreenOnEarly=" + mScreenOnEarly
5195 + ", mScreenOnFully=" + mScreenOnFully
5196 + ", mKeyguardDrawComplete=" + mKeyguardDrawComplete
5197 + ", mWindowManagerDrawComplete=" + mWindowManagerDrawComplete);
5198
5199 if (mScreenOnFully || !mScreenOnEarly || !mWindowManagerDrawComplete
5200 || (mAwake && !mKeyguardDrawComplete)) {
5201 return; // spurious or not ready yet
Jeff Brown36c4db82014-09-19 12:05:31 -07005202 }
5203
Jeff Brown3ee549c2014-09-22 20:14:39 -07005204 if (DEBUG_WAKEUP) Slog.i(TAG, "Finished screen turning on...");
5205 listener = mScreenOnListener;
Craig Mautner13f6ea72014-06-23 14:57:02 -07005206 mScreenOnListener = null;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005207 mScreenOnFully = true;
5208
5209 // Remember the first time we draw the keyguard so we know when we're done with
5210 // the main part of booting and can enable the screen and hide boot messages.
5211 if (!mKeyguardDrawnOnce && mAwake) {
5212 mKeyguardDrawnOnce = true;
5213 enableScreen = true;
5214 if (mBootMessageNeedsHiding) {
5215 mBootMessageNeedsHiding = false;
5216 hideBootMessages();
5217 }
5218 } else {
5219 enableScreen = false;
5220 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005221 }
5222
Jeff Brown3ee549c2014-09-22 20:14:39 -07005223 if (listener != null) {
5224 listener.onScreenOn();
5225 }
Jeff Brown4fc45272012-10-10 18:28:14 -07005226
Jeff Brown3ee549c2014-09-22 20:14:39 -07005227 if (enableScreen) {
5228 try {
5229 mWindowManager.enableScreenIfNeeded();
5230 } catch (RemoteException unhandled) {
Jeff Brown36c4db82014-09-19 12:05:31 -07005231 }
Craig Mautnera631d492014-08-05 15:16:01 -07005232 }
5233 }
5234
5235 private void handleHideBootMessage() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005236 synchronized (mLock) {
5237 if (!mKeyguardDrawnOnce) {
5238 mBootMessageNeedsHiding = true;
5239 return; // keyguard hasn't drawn the first time yet, not done booting
5240 }
Craig Mautnera631d492014-08-05 15:16:01 -07005241 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005242
5243 if (mBootMsgDialog != null) {
5244 if (DEBUG_WAKEUP) Slog.d(TAG, "handleHideBootMessage: dismissing");
5245 mBootMsgDialog.dismiss();
5246 mBootMsgDialog = null;
Craig Mautnera631d492014-08-05 15:16:01 -07005247 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005248 }
5249
5250 @Override
Jeff Brown3ee549c2014-09-22 20:14:39 -07005251 public boolean isScreenOn() {
5252 return mScreenOnFully;
Dianne Hackborn08743722009-12-21 12:16:51 -08005253 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005254
Dianne Hackborn08743722009-12-21 12:16:51 -08005255 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005256 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005257 public void enableKeyguard(boolean enabled) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005258 if (mKeyguardDelegate != null) {
5259 mKeyguardDelegate.setKeyguardEnabled(enabled);
Mike Lockwood3a74bd32011-08-12 13:55:22 -07005260 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005261 }
5262
5263 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005264 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005265 public void exitKeyguardSecurely(OnKeyguardExitResult callback) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005266 if (mKeyguardDelegate != null) {
5267 mKeyguardDelegate.verifyUnlock(callback);
Mike Lockwood3a74bd32011-08-12 13:55:22 -07005268 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005269 }
5270
Jim Millerab954542014-10-10 18:21:49 -07005271 private boolean isKeyguardShowingAndNotOccluded() {
Jim Miller5ecd8112013-01-09 18:50:26 -08005272 if (mKeyguardDelegate == null) return false;
Jim Millerab954542014-10-10 18:21:49 -07005273 return mKeyguardDelegate.isShowing() && !mKeyguardOccluded;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005274 }
5275
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005276 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005277 @Override
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005278 public boolean isKeyguardLocked() {
5279 return keyguardOn();
5280 }
5281
5282 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005283 @Override
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005284 public boolean isKeyguardSecure() {
Jim Miller5ecd8112013-01-09 18:50:26 -08005285 if (mKeyguardDelegate == null) return false;
5286 return mKeyguardDelegate.isSecure();
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005287 }
5288
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005289 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005290 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005291 public boolean inKeyguardRestrictedKeyInputMode() {
Jim Miller5ecd8112013-01-09 18:50:26 -08005292 if (mKeyguardDelegate == null) return false;
5293 return mKeyguardDelegate.isInputRestricted();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005294 }
5295
Jose Lima9546b202014-07-02 17:21:51 -07005296 @Override
Dianne Hackborn90c52de2011-09-23 12:57:44 -07005297 public void dismissKeyguardLw() {
RoboErik8a2cfc32014-05-16 11:19:38 -07005298 if (mKeyguardDelegate != null && mKeyguardDelegate.isShowing()) {
Craig Mautnerc0d2d0a2014-10-31 16:25:15 -07005299 if (DEBUG_KEYGUARD) Slog.d(TAG, "PWM.dismissKeyguardLw");
Daniel Sandler1ce804392012-11-07 15:07:12 -05005300 mHandler.post(new Runnable() {
Jose Lima9546b202014-07-02 17:21:51 -07005301 @Override
Daniel Sandler1ce804392012-11-07 15:07:12 -05005302 public void run() {
Jorim Jaggi8de4311c2014-08-11 22:36:20 +02005303 // ask the keyguard to prompt the user to authenticate if necessary
5304 mKeyguardDelegate.dismiss();
5305 }
5306 });
5307 }
5308 }
5309
5310 public void notifyActivityDrawnForKeyguardLw() {
5311 if (mKeyguardDelegate != null) {
5312 mHandler.post(new Runnable() {
5313 @Override
5314 public void run() {
5315 mKeyguardDelegate.onActivityDrawn();
Daniel Sandler1ce804392012-11-07 15:07:12 -05005316 }
5317 });
Dianne Hackborn90c52de2011-09-23 12:57:44 -07005318 }
5319 }
5320
Jorim Jaggicff0acb2014-03-31 16:35:15 +02005321 @Override
5322 public boolean isKeyguardDrawnLw() {
5323 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005324 return mKeyguardDrawnOnce;
Jorim Jaggicff0acb2014-03-31 16:35:15 +02005325 }
5326 }
5327
Jorim Jaggi0d674622014-05-21 01:34:15 +02005328 @Override
Jorim Jaggie29b2db2014-05-30 23:17:03 +02005329 public void startKeyguardExitAnimation(long startTime, long fadeoutDuration) {
Jorim Jaggi0d674622014-05-21 01:34:15 +02005330 if (mKeyguardDelegate != null) {
Craig Mautnerc0d2d0a2014-10-31 16:25:15 -07005331 if (DEBUG_KEYGUARD) Slog.d(TAG, "PWM.startKeyguardExitAnimation");
Jorim Jaggie29b2db2014-05-30 23:17:03 +02005332 mKeyguardDelegate.startKeyguardExitAnimation(startTime, fadeoutDuration);
Jorim Jaggi0d674622014-05-21 01:34:15 +02005333 }
5334 }
5335
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005336 void sendCloseSystemWindows() {
Jorim Jaggib10e33f2015-02-04 21:57:40 +01005337 PhoneWindow.sendCloseSystemWindows(mContext, null);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005338 }
5339
5340 void sendCloseSystemWindows(String reason) {
Jorim Jaggib10e33f2015-02-04 21:57:40 +01005341 PhoneWindow.sendCloseSystemWindows(mContext, reason);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005342 }
Mitsuru Oshima831d0d92009-06-16 18:27:18 -07005343
Jeff Brown01a98dd2011-09-20 15:08:29 -07005344 @Override
5345 public int rotationForOrientationLw(int orientation, int lastRotation) {
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05005346 if (false) {
5347 Slog.v(TAG, "rotationForOrientationLw(orient="
5348 + orientation + ", last=" + lastRotation
5349 + "); user=" + mUserRotation + " "
5350 + ((mUserRotationMode == WindowManagerPolicy.USER_ROTATION_LOCKED)
5351 ? "USER_ROTATION_LOCKED" : "")
5352 );
5353 }
5354
Craig Mautner46ac6fa2013-08-01 10:06:34 -07005355 if (mForceDefaultOrientation) {
5356 return Surface.ROTATION_0;
5357 }
5358
The Android Open Source Project0727d222009-03-11 12:11:58 -07005359 synchronized (mLock) {
Jeff Brownc0347aa2011-09-23 17:26:09 -07005360 int sensorRotation = mOrientationListener.getProposedRotation(); // may be -1
5361 if (sensorRotation < 0) {
Jeff Brown0f862b42012-09-27 21:11:01 -07005362 sensorRotation = lastRotation;
Jeff Brownc0347aa2011-09-23 17:26:09 -07005363 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005364
Jeff Browndec6cf42011-11-15 14:08:20 -08005365 final int preferredRotation;
Jeff Brown2e7760e2012-04-11 15:14:55 -07005366 if (mLidState == LID_OPEN && mLidOpenRotation >= 0) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005367 // Ignore sensor when lid switch is open and rotation is forced.
5368 preferredRotation = mLidOpenRotation;
5369 } else if (mDockMode == Intent.EXTRA_DOCK_STATE_CAR
Jeff Brownc0347aa2011-09-23 17:26:09 -07005370 && (mCarDockEnablesAccelerometer || mCarDockRotation >= 0)) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005371 // Ignore sensor when in car dock unless explicitly enabled.
5372 // This case can override the behavior of NOSENSOR, and can also
5373 // enable 180 degree rotation while docked.
Jeff Brownc0347aa2011-09-23 17:26:09 -07005374 preferredRotation = mCarDockEnablesAccelerometer
Jeff Brown01a98dd2011-09-20 15:08:29 -07005375 ? sensorRotation : mCarDockRotation;
Jeff Brown1a693182011-11-08 14:44:16 -08005376 } else if ((mDockMode == Intent.EXTRA_DOCK_STATE_DESK
5377 || mDockMode == Intent.EXTRA_DOCK_STATE_LE_DESK
5378 || mDockMode == Intent.EXTRA_DOCK_STATE_HE_DESK)
Jeff Brownc0347aa2011-09-23 17:26:09 -07005379 && (mDeskDockEnablesAccelerometer || mDeskDockRotation >= 0)) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005380 // Ignore sensor when in desk dock unless explicitly enabled.
5381 // This case can override the behavior of NOSENSOR, and can also
5382 // enable 180 degree rotation while docked.
Jeff Brownc0347aa2011-09-23 17:26:09 -07005383 preferredRotation = mDeskDockEnablesAccelerometer
Jeff Brown01a98dd2011-09-20 15:08:29 -07005384 ? sensorRotation : mDeskDockRotation;
Jeff Brownc82c89ed2013-04-17 17:18:15 -07005385 } else if (mHdmiPlugged && mDemoHdmiRotationLock) {
5386 // Ignore sensor when plugged into HDMI when demo HDMI rotation lock enabled.
Jeff Browneb3e4b92011-12-06 19:54:24 -08005387 // Note that the dock orientation overrides the HDMI orientation.
Jeff Brownc82c89ed2013-04-17 17:18:15 -07005388 preferredRotation = mDemoHdmiRotation;
5389 } else if (mHdmiPlugged && mDockMode == Intent.EXTRA_DOCK_STATE_UNDOCKED
5390 && mUndockedHdmiRotation >= 0) {
5391 // Ignore sensor when plugged into HDMI and an undocked orientation has
5392 // been specified in the configuration (only for legacy devices without
5393 // full multi-display support).
5394 // Note that the dock orientation overrides the HDMI orientation.
5395 preferredRotation = mUndockedHdmiRotation;
Chong Zhangae6119ff2014-11-11 18:54:39 -08005396 } else if (mDemoRotationLock) {
5397 // Ignore sensor when demo rotation lock is enabled.
5398 // Note that the dock orientation and HDMI rotation lock override this.
5399 preferredRotation = mDemoRotation;
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005400 } else if (orientation == ActivityInfo.SCREEN_ORIENTATION_LOCKED) {
5401 // Application just wants to remain locked in the last rotation.
5402 preferredRotation = lastRotation;
Jeff Brownbcdfc622014-03-06 19:13:04 -08005403 } else if (!mSupportAutoRotation) {
5404 // If we don't support auto-rotation then bail out here and ignore
5405 // the sensor and any rotation lock settings.
5406 preferredRotation = -1;
Jeff Brown207673cd2012-06-05 17:47:11 -07005407 } else if ((mUserRotationMode == WindowManagerPolicy.USER_ROTATION_FREE
Jeff Brown01a98dd2011-09-20 15:08:29 -07005408 && (orientation == ActivityInfo.SCREEN_ORIENTATION_USER
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005409 || orientation == ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED
5410 || orientation == ActivityInfo.SCREEN_ORIENTATION_USER_LANDSCAPE
5411 || orientation == ActivityInfo.SCREEN_ORIENTATION_USER_PORTRAIT
5412 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_USER))
Jeff Brown01a98dd2011-09-20 15:08:29 -07005413 || orientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR
5414 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_SENSOR
5415 || orientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE
5416 || orientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT) {
5417 // Otherwise, use sensor only if requested by the application or enabled
5418 // by default for USER or UNSPECIFIED modes. Does not apply to NOSENSOR.
Jeff Brownd3187e32011-09-21 19:26:44 -07005419 if (mAllowAllRotations < 0) {
5420 // Can't read this during init() because the context doesn't
5421 // have display metrics at that time so we cannot determine
5422 // tablet vs. phone then.
5423 mAllowAllRotations = mContext.getResources().getBoolean(
5424 com.android.internal.R.bool.config_allowAllRotations) ? 1 : 0;
5425 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005426 if (sensorRotation != Surface.ROTATION_180
Jeff Brownd3187e32011-09-21 19:26:44 -07005427 || mAllowAllRotations == 1
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005428 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_SENSOR
5429 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_USER) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005430 preferredRotation = sensorRotation;
5431 } else {
5432 preferredRotation = lastRotation;
5433 }
Jeff Brown207673cd2012-06-05 17:47:11 -07005434 } else if (mUserRotationMode == WindowManagerPolicy.USER_ROTATION_LOCKED
5435 && orientation != ActivityInfo.SCREEN_ORIENTATION_NOSENSOR) {
5436 // Apply rotation lock. Does not apply to NOSENSOR.
5437 // The idea is that the user rotation expresses a weak preference for the direction
5438 // of gravity and as NOSENSOR is never affected by gravity, then neither should
5439 // NOSENSOR be affected by rotation lock (although it will be affected by docks).
Jeff Brown4dfce202011-10-05 12:00:10 -07005440 preferredRotation = mUserRotation;
Jeff Browndec6cf42011-11-15 14:08:20 -08005441 } else {
5442 // No overriding preference.
5443 // We will do exactly what the application asked us to do.
5444 preferredRotation = -1;
Jeff Brown01a98dd2011-09-20 15:08:29 -07005445 }
5446
Dianne Hackborne5439f22010-10-02 16:53:50 -07005447 switch (orientation) {
5448 case ActivityInfo.SCREEN_ORIENTATION_PORTRAIT:
Jeff Browndec6cf42011-11-15 14:08:20 -08005449 // Return portrait unless overridden.
5450 if (isAnyPortrait(preferredRotation)) {
5451 return preferredRotation;
5452 }
Dianne Hackborne5439f22010-10-02 16:53:50 -07005453 return mPortraitRotation;
Dianne Hackborne5439f22010-10-02 16:53:50 -07005454
Jeff Brown01a98dd2011-09-20 15:08:29 -07005455 case ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE:
Jeff Browndec6cf42011-11-15 14:08:20 -08005456 // Return landscape unless overridden.
5457 if (isLandscapeOrSeascape(preferredRotation)) {
5458 return preferredRotation;
5459 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005460 return mLandscapeRotation;
5461
5462 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT:
Jeff Browndec6cf42011-11-15 14:08:20 -08005463 // Return reverse portrait unless overridden.
5464 if (isAnyPortrait(preferredRotation)) {
5465 return preferredRotation;
5466 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005467 return mUpsideDownRotation;
5468
5469 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE:
Jeff Browndec6cf42011-11-15 14:08:20 -08005470 // Return seascape unless overridden.
5471 if (isLandscapeOrSeascape(preferredRotation)) {
5472 return preferredRotation;
5473 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005474 return mSeascapeRotation;
5475
5476 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE:
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005477 case ActivityInfo.SCREEN_ORIENTATION_USER_LANDSCAPE:
Jeff Brown01a98dd2011-09-20 15:08:29 -07005478 // Return either landscape rotation.
5479 if (isLandscapeOrSeascape(preferredRotation)) {
5480 return preferredRotation;
5481 }
5482 if (isLandscapeOrSeascape(lastRotation)) {
Jeff Brown4519f072011-01-23 13:16:01 -08005483 return lastRotation;
5484 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005485 return mLandscapeRotation;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005486
Jeff Brown01a98dd2011-09-20 15:08:29 -07005487 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT:
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005488 case ActivityInfo.SCREEN_ORIENTATION_USER_PORTRAIT:
Jeff Brown01a98dd2011-09-20 15:08:29 -07005489 // Return either portrait rotation.
5490 if (isAnyPortrait(preferredRotation)) {
5491 return preferredRotation;
5492 }
5493 if (isAnyPortrait(lastRotation)) {
5494 return lastRotation;
5495 }
5496 return mPortraitRotation;
5497
5498 default:
Jeff Brown4dfce202011-10-05 12:00:10 -07005499 // For USER, UNSPECIFIED, NOSENSOR, SENSOR and FULL_SENSOR,
5500 // just return the preferred orientation we already calculated.
Jeff Brown01a98dd2011-09-20 15:08:29 -07005501 if (preferredRotation >= 0) {
5502 return preferredRotation;
5503 }
Dianne Hackborndacea8c2011-04-21 17:26:39 -07005504 return Surface.ROTATION_0;
Daniel Sandlere7e5ac22011-02-22 16:10:21 -05005505 }
5506 }
Steve Howarda7bfe6a2010-09-23 16:47:49 -07005507 }
5508
Jeff Brown01a98dd2011-09-20 15:08:29 -07005509 @Override
5510 public boolean rotationHasCompatibleMetricsLw(int orientation, int rotation) {
5511 switch (orientation) {
5512 case ActivityInfo.SCREEN_ORIENTATION_PORTRAIT:
5513 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT:
5514 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT:
5515 return isAnyPortrait(rotation);
5516
5517 case ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE:
5518 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE:
5519 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE:
5520 return isLandscapeOrSeascape(rotation);
5521
5522 default:
5523 return true;
5524 }
Steve Howarda7bfe6a2010-09-23 16:47:49 -07005525 }
5526
Jeff Brownc0347aa2011-09-23 17:26:09 -07005527 @Override
5528 public void setRotationLw(int rotation) {
5529 mOrientationListener.setCurrentRotation(rotation);
5530 }
5531
Jeff Brown01a98dd2011-09-20 15:08:29 -07005532 private boolean isLandscapeOrSeascape(int rotation) {
5533 return rotation == mLandscapeRotation || rotation == mSeascapeRotation;
Dianne Hackborne5439f22010-10-02 16:53:50 -07005534 }
5535
Jeff Brown01a98dd2011-09-20 15:08:29 -07005536 private boolean isAnyPortrait(int rotation) {
5537 return rotation == mPortraitRotation || rotation == mUpsideDownRotation;
Dianne Hackborne5439f22010-10-02 16:53:50 -07005538 }
5539
Jose Lima9546b202014-07-02 17:21:51 -07005540 @Override
Svetoslav Ganov80943d82013-01-02 10:25:37 -08005541 public int getUserRotationMode() {
5542 return Settings.System.getIntForUser(mContext.getContentResolver(),
Brett Chabot7e55c402013-05-16 19:38:08 -07005543 Settings.System.ACCELEROMETER_ROTATION, 0, UserHandle.USER_CURRENT) != 0 ?
5544 WindowManagerPolicy.USER_ROTATION_FREE :
5545 WindowManagerPolicy.USER_ROTATION_LOCKED;
Svetoslav Ganov80943d82013-01-02 10:25:37 -08005546 }
Daniel Sandlerb73617d2010-08-17 00:41:00 -04005547
5548 // User rotation: to be used when all else fails in assigning an orientation to the device
Jose Lima9546b202014-07-02 17:21:51 -07005549 @Override
Daniel Sandlerb73617d2010-08-17 00:41:00 -04005550 public void setUserRotationMode(int mode, int rot) {
5551 ContentResolver res = mContext.getContentResolver();
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05005552
5553 // mUserRotationMode and mUserRotation will be assigned by the content observer
Daniel Sandlerb73617d2010-08-17 00:41:00 -04005554 if (mode == WindowManagerPolicy.USER_ROTATION_LOCKED) {
Christopher Tate5e08af02012-09-21 17:17:22 -07005555 Settings.System.putIntForUser(res,
Daniel Sandlerb73617d2010-08-17 00:41:00 -04005556 Settings.System.USER_ROTATION,
Christopher Tate5e08af02012-09-21 17:17:22 -07005557 rot,
5558 UserHandle.USER_CURRENT);
5559 Settings.System.putIntForUser(res,
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05005560 Settings.System.ACCELEROMETER_ROTATION,
Christopher Tate5e08af02012-09-21 17:17:22 -07005561 0,
5562 UserHandle.USER_CURRENT);
Daniel Sandlerb73617d2010-08-17 00:41:00 -04005563 } else {
Christopher Tate5e08af02012-09-21 17:17:22 -07005564 Settings.System.putIntForUser(res,
Daniel Sandlerb73617d2010-08-17 00:41:00 -04005565 Settings.System.ACCELEROMETER_ROTATION,
Christopher Tate5e08af02012-09-21 17:17:22 -07005566 1,
5567 UserHandle.USER_CURRENT);
Daniel Sandlerb73617d2010-08-17 00:41:00 -04005568 }
5569 }
5570
Jose Lima9546b202014-07-02 17:21:51 -07005571 @Override
Jeff Brownac143512012-04-05 18:57:33 -07005572 public void setSafeMode(boolean safeMode) {
5573 mSafeMode = safeMode;
5574 performHapticFeedbackLw(null, safeMode
5575 ? HapticFeedbackConstants.SAFE_MODE_ENABLED
5576 : HapticFeedbackConstants.SAFE_MODE_DISABLED, true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005577 }
Craig Mautnereda67292013-04-28 13:50:14 -07005578
Dianne Hackborn181ceb52009-08-27 22:16:40 -07005579 static long[] getLongIntArray(Resources r, int resid) {
5580 int[] ar = r.getIntArray(resid);
5581 if (ar == null) {
5582 return null;
5583 }
5584 long[] out = new long[ar.length];
5585 for (int i=0; i<ar.length; i++) {
5586 out[i] = ar[i];
5587 }
5588 return out;
5589 }
Craig Mautnereda67292013-04-28 13:50:14 -07005590
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005591 /** {@inheritDoc} */
Craig Mautnereda67292013-04-28 13:50:14 -07005592 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005593 public void systemReady() {
Jim Millerab954542014-10-10 18:21:49 -07005594 mKeyguardDelegate = new KeyguardServiceDelegate(mContext);
Mike Lockwooded8902d2013-11-15 11:01:47 -08005595 mKeyguardDelegate.onSystemReady();
5596
Michael Wright3818c922014-09-02 13:59:07 -07005597 readCameraLensCoverState();
Jeff Brown4f5fa282014-06-12 19:19:15 -07005598 updateUiMode();
Dianne Hackbornb1a79802009-09-29 15:18:31 -07005599 synchronized (mLock) {
5600 updateOrientationListenerLp();
Dianne Hackbornc777e072010-02-12 13:07:59 -08005601 mSystemReady = true;
5602 mHandler.post(new Runnable() {
Craig Mautnereda67292013-04-28 13:50:14 -07005603 @Override
Dianne Hackbornc777e072010-02-12 13:07:59 -08005604 public void run() {
5605 updateSettings();
5606 }
5607 });
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005608 }
5609 }
Dianne Hackborn661cd522011-08-22 00:26:20 -07005610
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07005611 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005612 @Override
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07005613 public void systemBooted() {
Jim Millere5f910a2013-10-16 18:15:46 -07005614 if (mKeyguardDelegate != null) {
Jason Monk5eeebf52014-09-26 12:36:51 -04005615 mKeyguardDelegate.bindService(mContext);
Jim Millere5f910a2013-10-16 18:15:46 -07005616 mKeyguardDelegate.onBootCompleted();
5617 }
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07005618 synchronized (mLock) {
5619 mSystemBooted = true;
5620 }
Jeff Brown36c4db82014-09-19 12:05:31 -07005621 wakingUp();
5622 screenTurningOn(null);
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07005623 }
5624
Dianne Hackborn661cd522011-08-22 00:26:20 -07005625 ProgressDialog mBootMsgDialog = null;
5626
5627 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005628 @Override
Dianne Hackborn661cd522011-08-22 00:26:20 -07005629 public void showBootMessage(final CharSequence msg, final boolean always) {
5630 mHandler.post(new Runnable() {
5631 @Override public void run() {
5632 if (mBootMsgDialog == null) {
Craig Stout4c0cb8a2014-04-04 13:03:10 -07005633 int theme;
5634 if (mContext.getPackageManager().hasSystemFeature(
5635 PackageManager.FEATURE_WATCH)) {
5636 theme = com.android.internal.R.style.Theme_Micro_Dialog_Alert;
5637 } else if (mContext.getPackageManager().hasSystemFeature(
5638 PackageManager.FEATURE_TELEVISION)) {
5639 theme = com.android.internal.R.style.Theme_Leanback_Dialog_Alert;
5640 } else {
5641 theme = 0;
5642 }
Vinod Krishnanfa8fc412014-04-18 14:35:53 -07005643
5644 mBootMsgDialog = new ProgressDialog(mContext, theme) {
Dianne Hackborn295e3c22011-08-25 13:19:08 -07005645 // This dialog will consume all events coming in to
5646 // it, to avoid it trying to do things too early in boot.
5647 @Override public boolean dispatchKeyEvent(KeyEvent event) {
5648 return true;
5649 }
5650 @Override public boolean dispatchKeyShortcutEvent(KeyEvent event) {
5651 return true;
5652 }
5653 @Override public boolean dispatchTouchEvent(MotionEvent ev) {
5654 return true;
5655 }
5656 @Override public boolean dispatchTrackballEvent(MotionEvent ev) {
5657 return true;
5658 }
5659 @Override public boolean dispatchGenericMotionEvent(MotionEvent ev) {
5660 return true;
5661 }
5662 @Override public boolean dispatchPopulateAccessibilityEvent(
5663 AccessibilityEvent event) {
5664 return true;
5665 }
5666 };
Jeff Hao9f60c082014-10-28 18:51:07 -07005667 if (mContext.getPackageManager().isUpgrade()) {
5668 mBootMsgDialog.setTitle(R.string.android_upgrading_title);
5669 } else {
5670 mBootMsgDialog.setTitle(R.string.android_start_title);
5671 }
Dianne Hackborn661cd522011-08-22 00:26:20 -07005672 mBootMsgDialog.setProgressStyle(ProgressDialog.STYLE_SPINNER);
5673 mBootMsgDialog.setIndeterminate(true);
5674 mBootMsgDialog.getWindow().setType(
Dianne Hackborn29aae6f2011-08-18 18:30:09 -07005675 WindowManager.LayoutParams.TYPE_BOOT_PROGRESS);
Dianne Hackborn661cd522011-08-22 00:26:20 -07005676 mBootMsgDialog.getWindow().addFlags(
5677 WindowManager.LayoutParams.FLAG_DIM_BEHIND
5678 | WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN);
5679 mBootMsgDialog.getWindow().setDimAmount(1);
Dianne Hackbornd9efb952011-12-07 14:56:51 -08005680 WindowManager.LayoutParams lp = mBootMsgDialog.getWindow().getAttributes();
5681 lp.screenOrientation = ActivityInfo.SCREEN_ORIENTATION_NOSENSOR;
5682 mBootMsgDialog.getWindow().setAttributes(lp);
Dianne Hackborn661cd522011-08-22 00:26:20 -07005683 mBootMsgDialog.setCancelable(false);
5684 mBootMsgDialog.show();
5685 }
5686 mBootMsgDialog.setMessage(msg);
5687 }
5688 });
5689 }
5690
5691 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005692 @Override
Dianne Hackborn661cd522011-08-22 00:26:20 -07005693 public void hideBootMessages() {
Craig Mautnera631d492014-08-05 15:16:01 -07005694 mHandler.sendEmptyMessage(MSG_HIDE_BOOT_MESSAGE);
Dianne Hackborn661cd522011-08-22 00:26:20 -07005695 }
5696
Mike Lockwood28569302010-01-28 11:54:40 -05005697 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005698 @Override
Mike Lockwood28569302010-01-28 11:54:40 -05005699 public void userActivity() {
Dianne Hackborndf89e652011-10-06 22:35:11 -07005700 // ***************************************
5701 // NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE
5702 // ***************************************
5703 // THIS IS CALLED FROM DEEP IN THE POWER MANAGER
5704 // WITH ITS LOCKS HELD.
5705 //
5706 // This code must be VERY careful about the locks
5707 // it acquires.
5708 // In fact, the current code acquires way too many,
5709 // and probably has lurking deadlocks.
5710
Mike Lockwood28569302010-01-28 11:54:40 -05005711 synchronized (mScreenLockTimeout) {
5712 if (mLockScreenTimerActive) {
5713 // reset the timer
5714 mHandler.removeCallbacks(mScreenLockTimeout);
5715 mHandler.postDelayed(mScreenLockTimeout, mLockScreenTimeout);
5716 }
5717 }
Daniel Sandler0601eb72011-04-13 01:01:32 -04005718 }
5719
Adam Cohenf7522022012-10-03 20:03:18 -07005720 class ScreenLockTimeout implements Runnable {
5721 Bundle options;
5722
5723 @Override
Mike Lockwood28569302010-01-28 11:54:40 -05005724 public void run() {
5725 synchronized (this) {
5726 if (localLOGV) Log.v(TAG, "mScreenLockTimeout activating keyguard");
Jim Miller5ecd8112013-01-09 18:50:26 -08005727 if (mKeyguardDelegate != null) {
5728 mKeyguardDelegate.doKeyguardTimeout(options);
Mike Lockwood3a74bd32011-08-12 13:55:22 -07005729 }
Mike Lockwood28569302010-01-28 11:54:40 -05005730 mLockScreenTimerActive = false;
Adam Cohenf7522022012-10-03 20:03:18 -07005731 options = null;
Mike Lockwood28569302010-01-28 11:54:40 -05005732 }
5733 }
Mike Lockwood28569302010-01-28 11:54:40 -05005734
Adam Cohenf7522022012-10-03 20:03:18 -07005735 public void setLockOptions(Bundle options) {
5736 this.options = options;
5737 }
5738 }
5739
5740 ScreenLockTimeout mScreenLockTimeout = new ScreenLockTimeout();
5741
Jose Lima9546b202014-07-02 17:21:51 -07005742 @Override
Adam Cohenf7522022012-10-03 20:03:18 -07005743 public void lockNow(Bundle options) {
Jim Miller93c518e2012-01-17 15:55:31 -08005744 mContext.enforceCallingOrSelfPermission(android.Manifest.permission.DEVICE_POWER, null);
5745 mHandler.removeCallbacks(mScreenLockTimeout);
Adam Cohenf7522022012-10-03 20:03:18 -07005746 if (options != null) {
5747 // In case multiple calls are made to lockNow, we don't wipe out the options
5748 // until the runnable actually executes.
5749 mScreenLockTimeout.setLockOptions(options);
5750 }
Jim Miller93c518e2012-01-17 15:55:31 -08005751 mHandler.post(mScreenLockTimeout);
5752 }
5753
Mike Lockwood28569302010-01-28 11:54:40 -05005754 private void updateLockScreenTimeout() {
5755 synchronized (mScreenLockTimeout) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005756 boolean enable = (mAllowLockscreenWhenOn && mAwake &&
Jim Miller5ecd8112013-01-09 18:50:26 -08005757 mKeyguardDelegate != null && mKeyguardDelegate.isSecure());
Mike Lockwood28569302010-01-28 11:54:40 -05005758 if (mLockScreenTimerActive != enable) {
5759 if (enable) {
5760 if (localLOGV) Log.v(TAG, "setting lockscreen timer");
5761 mHandler.postDelayed(mScreenLockTimeout, mLockScreenTimeout);
5762 } else {
5763 if (localLOGV) Log.v(TAG, "clearing lockscreen timer");
5764 mHandler.removeCallbacks(mScreenLockTimeout);
5765 }
5766 mLockScreenTimerActive = enable;
5767 }
5768 }
5769 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005770
5771 /** {@inheritDoc} */
Craig Mautnereda67292013-04-28 13:50:14 -07005772 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005773 public void enableScreenAfterBoot() {
5774 readLidState();
Jeff Brownc458ce92012-04-30 14:58:40 -07005775 applyLidSwitchState();
Jeff Brown01a98dd2011-09-20 15:08:29 -07005776 updateRotation(true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005777 }
Dianne Hackbornf54c8f92009-09-19 14:03:57 -07005778
Jeff Brownc458ce92012-04-30 14:58:40 -07005779 private void applyLidSwitchState() {
Jeff Brownc458ce92012-04-30 14:58:40 -07005780 if (mLidState == LID_CLOSED && mLidControlsSleep) {
Jeff Brown6d8fd272014-05-20 21:24:38 -07005781 mPowerManager.goToSleep(SystemClock.uptimeMillis(),
Jeff Brownc12035c2014-08-13 18:52:25 -07005782 PowerManager.GO_TO_SLEEP_REASON_LID_SWITCH,
Jeff Brown6d8fd272014-05-20 21:24:38 -07005783 PowerManager.GO_TO_SLEEP_FLAG_NO_DOZE);
Jeff Brownc458ce92012-04-30 14:58:40 -07005784 }
Jeff Browna20dda42014-05-27 20:57:24 -07005785
5786 synchronized (mLock) {
5787 updateWakeGestureListenerLp();
5788 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005789 }
5790
Jeff Brown4f5fa282014-06-12 19:19:15 -07005791 void updateUiMode() {
5792 if (mUiModeManager == null) {
5793 mUiModeManager = IUiModeManager.Stub.asInterface(
5794 ServiceManager.getService(Context.UI_MODE_SERVICE));
5795 }
5796 try {
5797 mUiMode = mUiModeManager.getCurrentModeType();
5798 } catch (RemoteException e) {
5799 }
5800 }
5801
Jeff Brown01a98dd2011-09-20 15:08:29 -07005802 void updateRotation(boolean alwaysSendConfiguration) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005803 try {
5804 //set orientation on WindowManager
Dianne Hackbornf87d1962012-04-04 12:48:24 -07005805 mWindowManager.updateRotation(alwaysSendConfiguration, false);
5806 } catch (RemoteException e) {
5807 // Ignore
5808 }
5809 }
5810
5811 void updateRotation(boolean alwaysSendConfiguration, boolean forceRelayout) {
5812 try {
5813 //set orientation on WindowManager
5814 mWindowManager.updateRotation(alwaysSendConfiguration, forceRelayout);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005815 } catch (RemoteException e) {
5816 // Ignore
5817 }
5818 }
5819
Daniel Sandler6396c722013-04-16 20:19:09 -04005820 /**
5821 * Return an Intent to launch the currently active dock app as home. Returns
5822 * null if the standard home should be launched, which is the case if any of the following is
5823 * true:
5824 * <ul>
5825 * <li>The device is not in either car mode or desk mode
5826 * <li>The device is in car mode but ENABLE_CAR_DOCK_HOME_CAPTURE is false
5827 * <li>The device is in desk mode but ENABLE_DESK_DOCK_HOME_CAPTURE is false
5828 * <li>The device is in car mode but there's no CAR_DOCK app with METADATA_DOCK_HOME
5829 * <li>The device is in desk mode but there's no DESK_DOCK app with METADATA_DOCK_HOME
5830 * </ul>
Craig Mautnereda67292013-04-28 13:50:14 -07005831 * @return A dock intent.
Daniel Sandler6396c722013-04-16 20:19:09 -04005832 */
5833 Intent createHomeDockIntent() {
5834 Intent intent = null;
5835
5836 // What home does is based on the mode, not the dock state. That
5837 // is, when in car mode you should be taken to car home regardless
5838 // of whether we are actually in a car dock.
5839 if (mUiMode == Configuration.UI_MODE_TYPE_CAR) {
5840 if (ENABLE_CAR_DOCK_HOME_CAPTURE) {
5841 intent = mCarDockIntent;
5842 }
5843 } else if (mUiMode == Configuration.UI_MODE_TYPE_DESK) {
5844 if (ENABLE_DESK_DOCK_HOME_CAPTURE) {
5845 intent = mDeskDockIntent;
5846 }
Jeff Brown4f5fa282014-06-12 19:19:15 -07005847 } else if (mUiMode == Configuration.UI_MODE_TYPE_WATCH
5848 && (mDockMode == Intent.EXTRA_DOCK_STATE_DESK
5849 || mDockMode == Intent.EXTRA_DOCK_STATE_HE_DESK
5850 || mDockMode == Intent.EXTRA_DOCK_STATE_LE_DESK)) {
5851 // Always launch dock home from home when watch is docked, if it exists.
5852 intent = mDeskDockIntent;
Daniel Sandler6396c722013-04-16 20:19:09 -04005853 }
5854
5855 if (intent == null) {
5856 return null;
5857 }
5858
5859 ActivityInfo ai = null;
5860 ResolveInfo info = mContext.getPackageManager().resolveActivityAsUser(
5861 intent,
John Spurlockf56bef12013-07-09 09:51:46 -04005862 PackageManager.MATCH_DEFAULT_ONLY | PackageManager.GET_META_DATA,
Craig Mautnerd625ab22013-09-06 13:40:31 -07005863 mCurrentUserId);
Daniel Sandler6396c722013-04-16 20:19:09 -04005864 if (info != null) {
5865 ai = info.activityInfo;
5866 }
5867 if (ai != null
5868 && ai.metaData != null
5869 && ai.metaData.getBoolean(Intent.METADATA_DOCK_HOME)) {
5870 intent = new Intent(intent);
5871 intent.setClassName(ai.packageName, ai.name);
5872 return intent;
5873 }
5874
5875 return null;
5876 }
5877
Bryce Lee01b0c5f2015-02-05 18:24:04 -08005878 void startDockOrHome(boolean fromHomeKey) {
John Spurlockc8b46ca2013-04-08 12:59:26 -04005879 awakenDreams();
Daniel Sandler6396c722013-04-16 20:19:09 -04005880
5881 Intent dock = createHomeDockIntent();
5882 if (dock != null) {
5883 try {
Bryce Lee01b0c5f2015-02-05 18:24:04 -08005884 if (fromHomeKey) {
5885 dock.putExtra(WindowManagerPolicy.EXTRA_FROM_HOME_KEY, fromHomeKey);
5886 }
Daniel Sandler6396c722013-04-16 20:19:09 -04005887 mContext.startActivityAsUser(dock, UserHandle.CURRENT);
5888 return;
5889 } catch (ActivityNotFoundException e) {
5890 }
5891 }
5892
Bryce Lee01b0c5f2015-02-05 18:24:04 -08005893 Intent intent;
5894
5895 if (fromHomeKey) {
5896 intent = new Intent(mHomeIntent);
5897 intent.putExtra(WindowManagerPolicy.EXTRA_FROM_HOME_KEY, fromHomeKey);
5898 } else {
5899 intent = mHomeIntent;
5900 }
5901
5902 mContext.startActivityAsUser(intent, UserHandle.CURRENT);
Dianne Hackborn39c2d712009-09-22 11:41:31 -07005903 }
Craig Mautnereda67292013-04-28 13:50:14 -07005904
Dianne Hackborn39c2d712009-09-22 11:41:31 -07005905 /**
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005906 * goes to the home screen
5907 * @return whether it did anything
5908 */
5909 boolean goHome() {
5910 if (false) {
5911 // This code always brings home to the front.
Dianne Hackborn256dd3b2009-05-19 18:51:21 -07005912 try {
5913 ActivityManagerNative.getDefault().stopAppSwitches();
5914 } catch (RemoteException e) {
5915 }
Dianne Hackborn94a679d2009-07-28 17:51:07 -07005916 sendCloseSystemWindows();
Bryce Lee01b0c5f2015-02-05 18:24:04 -08005917 startDockOrHome(false /*fromHomeKey*/);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005918 } else {
5919 // This code brings home to the front or, if it is already
5920 // at the front, puts the device to sleep.
5921 try {
Wink Savilled2e6a332010-02-12 12:12:06 -08005922 if (SystemProperties.getInt("persist.sys.uts-test-mode", 0) == 1) {
5923 /// Roll back EndcallBehavior as the cupcake design to pass P1 lab entry.
5924 Log.d(TAG, "UTS-TEST-MODE");
5925 } else {
5926 ActivityManagerNative.getDefault().stopAppSwitches();
5927 sendCloseSystemWindows();
Daniel Sandler6396c722013-04-16 20:19:09 -04005928 Intent dock = createHomeDockIntent();
5929 if (dock != null) {
5930 int result = ActivityManagerNative.getDefault()
5931 .startActivityAsUser(null, null, dock,
5932 dock.resolveTypeIfNeeded(mContext.getContentResolver()),
5933 null, null, 0,
5934 ActivityManager.START_FLAG_ONLY_IF_NEEDED,
Jeff Hao1b012d32014-08-20 10:35:34 -07005935 null, null, UserHandle.USER_CURRENT);
Daniel Sandler6396c722013-04-16 20:19:09 -04005936 if (result == ActivityManager.START_RETURN_INTENT_TO_CALLER) {
5937 return false;
5938 }
5939 }
Dianne Hackborn39c2d712009-09-22 11:41:31 -07005940 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005941 int result = ActivityManagerNative.getDefault()
Dianne Hackbornf265ea92013-01-31 15:00:51 -08005942 .startActivityAsUser(null, null, mHomeIntent,
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005943 mHomeIntent.resolveTypeIfNeeded(mContext.getContentResolver()),
Dianne Hackborna4972e92012-03-14 10:38:05 -07005944 null, null, 0,
5945 ActivityManager.START_FLAG_ONLY_IF_NEEDED,
Jeff Hao1b012d32014-08-20 10:35:34 -07005946 null, null, UserHandle.USER_CURRENT);
Dianne Hackborna4972e92012-03-14 10:38:05 -07005947 if (result == ActivityManager.START_RETURN_INTENT_TO_CALLER) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005948 return false;
5949 }
5950 } catch (RemoteException ex) {
5951 // bummer, the activity manager, which is in this process, is dead
5952 }
5953 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005954 return true;
5955 }
Craig Mautnereda67292013-04-28 13:50:14 -07005956
5957 @Override
The Android Open Source Project0727d222009-03-11 12:11:58 -07005958 public void setCurrentOrientationLw(int newOrientation) {
5959 synchronized (mLock) {
5960 if (newOrientation != mCurrentAppOrientation) {
5961 mCurrentAppOrientation = newOrientation;
5962 updateOrientationListenerLp();
5963 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005964 }
5965 }
Amith Yamasanic33cb712010-02-10 15:21:49 -08005966
Svetoslav Ganov7befb7d2012-09-27 16:49:23 -07005967 private void performAuditoryFeedbackForAccessibilityIfNeed() {
5968 if (!isGlobalAccessibilityGestureEnabled()) {
5969 return;
5970 }
5971 AudioManager audioManager = (AudioManager) mContext.getSystemService(
5972 Context.AUDIO_SERVICE);
5973 if (audioManager.isSilentMode()) {
5974 return;
5975 }
5976 Ringtone ringTone = RingtoneManager.getRingtone(mContext,
5977 Settings.System.DEFAULT_NOTIFICATION_URI);
5978 ringTone.setStreamType(AudioManager.STREAM_MUSIC);
5979 ringTone.play();
5980 }
Craig Mautnereda67292013-04-28 13:50:14 -07005981
Bryce Lee584a4452014-10-21 15:55:55 -07005982 private boolean isTheaterModeEnabled() {
5983 return Settings.Global.getInt(mContext.getContentResolver(),
5984 Settings.Global.THEATER_MODE_ON, 0) == 1;
5985 }
5986
Svetoslav Ganov7befb7d2012-09-27 16:49:23 -07005987 private boolean isGlobalAccessibilityGestureEnabled() {
5988 return Settings.Global.getInt(mContext.getContentResolver(),
5989 Settings.Global.ENABLE_ACCESSIBILITY_GLOBAL_GESTURE_ENABLED, 0) == 1;
5990 }
5991
Craig Mautnereda67292013-04-28 13:50:14 -07005992 @Override
The Android Open Source Project0727d222009-03-11 12:11:58 -07005993 public boolean performHapticFeedbackLw(WindowState win, int effectId, boolean always) {
Svetoslav Ganov96179212012-10-10 14:17:45 -07005994 if (!mVibrator.hasVibrator()) {
5995 return false;
5996 }
Christopher Tate5e08af02012-09-21 17:17:22 -07005997 final boolean hapticsDisabled = Settings.System.getIntForUser(mContext.getContentResolver(),
5998 Settings.System.HAPTIC_FEEDBACK_ENABLED, 0, UserHandle.USER_CURRENT) == 0;
Jeff Brown82379ba2014-07-25 19:03:28 -07005999 if (hapticsDisabled && !always) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006000 return false;
6001 }
Amith Yamasanic33cb712010-02-10 15:21:49 -08006002 long[] pattern = null;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006003 switch (effectId) {
6004 case HapticFeedbackConstants.LONG_PRESS:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006005 pattern = mLongPressVibePattern;
6006 break;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006007 case HapticFeedbackConstants.VIRTUAL_KEY:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006008 pattern = mVirtualKeyVibePattern;
6009 break;
6010 case HapticFeedbackConstants.KEYBOARD_TAP:
6011 pattern = mKeyboardTapVibePattern;
6012 break;
Fabrice Di Meglioeeff63a2013-08-05 12:07:24 -07006013 case HapticFeedbackConstants.CLOCK_TICK:
6014 pattern = mClockTickVibePattern;
6015 break;
Fabrice Di Megliobd9152f2013-10-01 11:21:31 -07006016 case HapticFeedbackConstants.CALENDAR_DATE:
6017 pattern = mCalendarDateVibePattern;
6018 break;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006019 case HapticFeedbackConstants.SAFE_MODE_DISABLED:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006020 pattern = mSafeModeDisabledVibePattern;
6021 break;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006022 case HapticFeedbackConstants.SAFE_MODE_ENABLED:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006023 pattern = mSafeModeEnabledVibePattern;
6024 break;
Amith Yamasanic33cb712010-02-10 15:21:49 -08006025 default:
6026 return false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006027 }
Dianne Hackbornf265ea92013-01-31 15:00:51 -08006028 int owningUid;
6029 String owningPackage;
6030 if (win != null) {
6031 owningUid = win.getOwningUid();
6032 owningPackage = win.getOwningPackage();
6033 } else {
6034 owningUid = android.os.Process.myUid();
Dianne Hackborn95d78532013-09-11 09:51:14 -07006035 owningPackage = mContext.getOpPackageName();
Dianne Hackbornf265ea92013-01-31 15:00:51 -08006036 }
Amith Yamasanic33cb712010-02-10 15:21:49 -08006037 if (pattern.length == 1) {
6038 // One-shot vibration
John Spurlock7b414672014-07-18 13:02:39 -04006039 mVibrator.vibrate(owningUid, owningPackage, pattern[0], VIBRATION_ATTRIBUTES);
Amith Yamasanic33cb712010-02-10 15:21:49 -08006040 } else {
6041 // Pattern vibration
John Spurlock7b414672014-07-18 13:02:39 -04006042 mVibrator.vibrate(owningUid, owningPackage, pattern, -1, VIBRATION_ATTRIBUTES);
Amith Yamasanic33cb712010-02-10 15:21:49 -08006043 }
6044 return true;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006045 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07006046
6047 @Override
6048 public void keepScreenOnStartedLw() {
Daniel Sandler0601eb72011-04-13 01:01:32 -04006049 }
6050
Jeff Brownc38c9be2012-10-04 13:16:19 -07006051 @Override
6052 public void keepScreenOnStoppedLw() {
Jim Millerab954542014-10-10 18:21:49 -07006053 if (isKeyguardShowingAndNotOccluded()) {
Jim Miller25190572013-02-28 17:36:24 -08006054 mPowerManager.userActivity(SystemClock.uptimeMillis(), false);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006055 }
6056 }
Mike Lockwoodfcb39242009-10-21 23:01:07 -04006057
Dianne Hackborndf89e652011-10-06 22:35:11 -07006058 private int updateSystemUiVisibilityLw() {
Joe Onorato664644d2011-01-23 17:53:23 -08006059 // If there is no window focused, there will be nobody to handle the events
6060 // anyway, so just hang on in whatever state we're in until things settle down.
Adrian Roos53f28ec2014-10-29 17:26:12 +01006061 final WindowState win = mFocusedWindow != null ? mFocusedWindow
6062 : mTopFullscreenOpaqueWindowState;
John Spurlock79da8332013-09-20 12:04:47 -04006063 if (win == null) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07006064 return 0;
6065 }
Jorim Jaggi380ecb82014-03-14 17:25:20 +01006066 if ((win.getAttrs().privateFlags & PRIVATE_FLAG_KEYGUARD) != 0 && mHideLockScreen == true) {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07006067 // We are updating at a point where the keyguard has gotten
6068 // focus, but we were last in a state where the top window is
6069 // hiding it. This is probably because the keyguard as been
6070 // shown while the top window was displayed, so we want to ignore
6071 // it here because this is just a very transient change and it
6072 // will quickly lose focus once it correctly gets hidden.
6073 return 0;
6074 }
John Spurlock32beb2c2013-03-11 10:16:47 -04006075
John Spurlock1db8b682014-02-18 11:18:59 -05006076 int tmpVisibility = PolicyControl.getSystemUiVisibility(win, null)
Dianne Hackborne26ab702011-10-16 13:21:33 -07006077 & ~mResettingSystemUiFlags
6078 & ~mForceClearedSystemUiFlags;
John Spurlock79da8332013-09-20 12:04:47 -04006079 if (mForcingShowNavBar && win.getSurfaceLayer() < mForcingShowNavBarLayer) {
John Spurlockc6d1c602014-01-17 15:22:06 -05006080 tmpVisibility &= ~PolicyControl.adjustClearableFlags(win, View.SYSTEM_UI_CLEARABLE_FLAGS);
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08006081 }
John Spurlock79da8332013-09-20 12:04:47 -04006082 final int visibility = updateSystemBarsLw(win, mLastSystemUiFlags, tmpVisibility);
John Spurlockad3e6cb2013-04-30 08:47:43 -04006083 final int diff = visibility ^ mLastSystemUiFlags;
John Spurlock79da8332013-09-20 12:04:47 -04006084 final boolean needsMenu = win.getNeedsMenuLw(mTopFullscreenOpaqueWindowState);
Dianne Hackborne0f085d2011-11-30 18:41:15 -08006085 if (diff == 0 && mLastFocusNeedsMenu == needsMenu
John Spurlock79da8332013-09-20 12:04:47 -04006086 && mFocusedApp == win.getAppToken()) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07006087 return 0;
6088 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07006089 mLastSystemUiFlags = visibility;
Dianne Hackborn4eff8d32011-11-10 19:38:40 -08006090 mLastFocusNeedsMenu = needsMenu;
John Spurlock79da8332013-09-20 12:04:47 -04006091 mFocusedApp = win.getAppToken();
Dianne Hackborndf89e652011-10-06 22:35:11 -07006092 mHandler.post(new Runnable() {
Craig Mautnereda67292013-04-28 13:50:14 -07006093 @Override
Dianne Hackborndf89e652011-10-06 22:35:11 -07006094 public void run() {
Dianne Hackborn42e620c2012-06-24 13:20:51 -07006095 try {
6096 IStatusBarService statusbar = getStatusBarService();
6097 if (statusbar != null) {
Adrian Roos53f28ec2014-10-29 17:26:12 +01006098 statusbar.setSystemUiVisibility(visibility, 0xffffffff, win.toString());
Dianne Hackborn42e620c2012-06-24 13:20:51 -07006099 statusbar.topAppWindowChanged(needsMenu);
Joe Onorato664644d2011-01-23 17:53:23 -08006100 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07006101 } catch (RemoteException e) {
6102 // re-acquire status bar service next time it is needed.
6103 mStatusBarService = null;
Joe Onorato664644d2011-01-23 17:53:23 -08006104 }
Dianne Hackborndf89e652011-10-06 22:35:11 -07006105 }
6106 });
6107 return diff;
Joe Onorato664644d2011-01-23 17:53:23 -08006108 }
6109
John Spurlock79da8332013-09-20 12:04:47 -04006110 private int updateSystemBarsLw(WindowState win, int oldVis, int vis) {
John Spurlockbd957402013-10-03 11:38:39 -04006111 // apply translucent bar vis flags
Jorim Jaggi380ecb82014-03-14 17:25:20 +01006112 WindowState transWin = isStatusBarKeyguard() && !mHideLockScreen
6113 ? mStatusBar
John Spurlockbd957402013-10-03 11:38:39 -04006114 : mTopFullscreenOpaqueWindowState;
6115 vis = mStatusBarController.applyTranslucentFlagLw(transWin, vis, oldVis);
6116 vis = mNavigationBarController.applyTranslucentFlagLw(transWin, vis, oldVis);
6117
John Spurlock27735a42013-08-14 17:57:38 -04006118 // prevent status bar interaction from clearing certain flags
John Spurlock79da8332013-09-20 12:04:47 -04006119 boolean statusBarHasFocus = win.getAttrs().type == TYPE_STATUS_BAR;
John Spurlock08ffcf52014-07-11 10:13:46 -04006120 if (statusBarHasFocus && !isStatusBarKeyguard()) {
John Spurlockad3e6cb2013-04-30 08:47:43 -04006121 int flags = View.SYSTEM_UI_FLAG_FULLSCREEN
6122 | View.SYSTEM_UI_FLAG_HIDE_NAVIGATION
John Spurlockcfc359a2013-09-05 10:42:03 -04006123 | View.SYSTEM_UI_FLAG_IMMERSIVE
Jorim Jaggi5cf17872014-03-26 18:31:48 +01006124 | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY;
John Spurlock08ffcf52014-07-11 10:13:46 -04006125 if (mHideLockScreen) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01006126 flags |= View.STATUS_BAR_TRANSLUCENT | View.NAVIGATION_BAR_TRANSLUCENT;
6127 }
John Spurlockbd957402013-10-03 11:38:39 -04006128 vis = (vis & ~flags) | (oldVis & flags);
John Spurlockad3e6cb2013-04-30 08:47:43 -04006129 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04006130
Adrian Roos4fb3ee32014-08-22 19:29:09 +02006131 if (!areTranslucentBarsAllowed() && transWin != mStatusBar) {
Adrian Roosea562512014-05-05 13:33:03 +02006132 vis &= ~(View.NAVIGATION_BAR_TRANSLUCENT | View.STATUS_BAR_TRANSLUCENT
6133 | View.SYSTEM_UI_TRANSPARENT);
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006134 }
6135
John Spurlock27735a42013-08-14 17:57:38 -04006136 // update status bar
John Spurlockf1a36642013-10-12 17:50:42 -04006137 boolean immersiveSticky =
6138 (vis & View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY) != 0;
John Spurlock27735a42013-08-14 17:57:38 -04006139 boolean hideStatusBarWM =
John Spurlockbd957402013-10-03 11:38:39 -04006140 mTopFullscreenOpaqueWindowState != null &&
John Spurlockc6d1c602014-01-17 15:22:06 -05006141 (PolicyControl.getWindowFlags(mTopFullscreenOpaqueWindowState, null)
John Spurlock27735a42013-08-14 17:57:38 -04006142 & WindowManager.LayoutParams.FLAG_FULLSCREEN) != 0;
6143 boolean hideStatusBarSysui =
6144 (vis & View.SYSTEM_UI_FLAG_FULLSCREEN) != 0;
John Spurlockf1a36642013-10-12 17:50:42 -04006145 boolean hideNavBarSysui =
6146 (vis & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) != 0;
John Spurlockad3e6cb2013-04-30 08:47:43 -04006147
John Spurlock27735a42013-08-14 17:57:38 -04006148 boolean transientStatusBarAllowed =
6149 mStatusBar != null && (
6150 hideStatusBarWM
John Spurlockf1a36642013-10-12 17:50:42 -04006151 || (hideStatusBarSysui && immersiveSticky)
John Spurlock27735a42013-08-14 17:57:38 -04006152 || statusBarHasFocus);
6153
John Spurlockf1a36642013-10-12 17:50:42 -04006154 boolean transientNavBarAllowed =
6155 mNavigationBar != null &&
6156 hideNavBarSysui && immersiveSticky;
6157
John Spurlockf25706f2013-11-07 18:02:43 -05006158 boolean denyTransientStatus = mStatusBarController.isTransientShowRequested()
John Spurlockf1a36642013-10-12 17:50:42 -04006159 && !transientStatusBarAllowed && hideStatusBarSysui;
John Spurlockf25706f2013-11-07 18:02:43 -05006160 boolean denyTransientNav = mNavigationBarController.isTransientShowRequested()
John Spurlockf1a36642013-10-12 17:50:42 -04006161 && !transientNavBarAllowed;
6162 if (denyTransientStatus || denyTransientNav) {
John Spurlock27735a42013-08-14 17:57:38 -04006163 // clear the clearable flags instead
John Spurlockf1a36642013-10-12 17:50:42 -04006164 clearClearableFlagsLw();
tiger_huangc58d7562014-10-23 20:24:19 +08006165 vis &= ~View.SYSTEM_UI_CLEARABLE_FLAGS;
John Spurlockad3e6cb2013-04-30 08:47:43 -04006166 }
John Spurlock27735a42013-08-14 17:57:38 -04006167
6168 vis = mStatusBarController.updateVisibilityLw(transientStatusBarAllowed, oldVis, vis);
6169
6170 // update navigation bar
John Spurlockf1a36642013-10-12 17:50:42 -04006171 boolean oldImmersiveMode = isImmersiveMode(oldVis);
6172 boolean newImmersiveMode = isImmersiveMode(vis);
6173 if (win != null && oldImmersiveMode != newImmersiveMode) {
John Spurlock79da8332013-09-20 12:04:47 -04006174 final String pkg = win.getOwningPackage();
Maurice Lam99c6e072014-04-28 18:24:28 -07006175 mImmersiveModeConfirmation.immersiveModeChanged(pkg, newImmersiveMode,
6176 isUserSetupComplete());
John Spurlock34e13d92013-08-10 06:52:28 -04006177 }
John Spurlock27735a42013-08-14 17:57:38 -04006178
John Spurlockf1a36642013-10-12 17:50:42 -04006179 vis = mNavigationBarController.updateVisibilityLw(transientNavBarAllowed, oldVis, vis);
6180
John Spurlocke1f366f2013-08-05 12:22:40 -04006181 return vis;
John Spurlockad3e6cb2013-04-30 08:47:43 -04006182 }
6183
John Spurlockf1a36642013-10-12 17:50:42 -04006184 private void clearClearableFlagsLw() {
6185 int newVal = mResettingSystemUiFlags | View.SYSTEM_UI_CLEARABLE_FLAGS;
6186 if (newVal != mResettingSystemUiFlags) {
6187 mResettingSystemUiFlags = newVal;
6188 mWindowManagerFuncs.reevaluateStatusBarVisibility();
6189 }
6190 }
6191
6192 private boolean isImmersiveMode(int vis) {
6193 final int flags = View.SYSTEM_UI_FLAG_IMMERSIVE | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY;
John Spurlock34e13d92013-08-10 06:52:28 -04006194 return mNavigationBar != null
6195 && (vis & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) != 0
Daniel Sandler900ece52013-10-18 15:53:27 -04006196 && (vis & flags) != 0
6197 && canHideNavigationBar();
John Spurlock34e13d92013-08-10 06:52:28 -04006198 }
6199
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006200 /**
Daniel Sandlerdd73ee42013-10-11 22:19:59 -04006201 * @return whether the navigation or status bar can be made translucent
6202 *
6203 * This should return true unless touch exploration is not enabled or
6204 * R.boolean.config_enableTranslucentDecor is false.
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006205 */
Daniel Sandlerdd73ee42013-10-11 22:19:59 -04006206 private boolean areTranslucentBarsAllowed() {
Svetoslav8e3feb12014-02-24 13:46:47 -08006207 return mTranslucentDecorEnabled
6208 && !mAccessibilityManager.isTouchExplorationEnabled();
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006209 }
6210
Daniel Sandler0c4ccff2011-10-19 16:39:14 -04006211 // Use this instead of checking config_showNavigationBar so that it can be consistently
6212 // overridden by qemu.hw.mainkeys in the emulator.
Craig Mautnereda67292013-04-28 13:50:14 -07006213 @Override
Daniel Sandler0c4ccff2011-10-19 16:39:14 -04006214 public boolean hasNavigationBar() {
6215 return mHasNavigationBar;
6216 }
6217
satok1bc0a492012-04-25 22:47:12 +09006218 @Override
6219 public void setLastInputMethodWindowLw(WindowState ime, WindowState target) {
6220 mLastInputMethodWindow = ime;
6221 mLastInputMethodTargetWindow = target;
6222 }
6223
Craig Mautnerf1b67412012-09-19 13:18:29 -07006224 @Override
Satoshi Kataoka658c7b82013-10-10 17:03:51 +09006225 public int getInputMethodWindowVisibleHeightLw() {
6226 return mDockBottom - mCurBottom;
6227 }
6228
6229 @Override
Craig Mautnerf1b67412012-09-19 13:18:29 -07006230 public void setCurrentUserLw(int newUserId) {
Craig Mautnerd625ab22013-09-06 13:40:31 -07006231 mCurrentUserId = newUserId;
Jim Miller5ecd8112013-01-09 18:50:26 -08006232 if (mKeyguardDelegate != null) {
6233 mKeyguardDelegate.setCurrentUser(newUserId);
Craig Mautnerf1b67412012-09-19 13:18:29 -07006234 }
John Spurlock13451a22012-09-28 14:40:41 -04006235 if (mStatusBarService != null) {
6236 try {
6237 mStatusBarService.setCurrentUser(newUserId);
6238 } catch (RemoteException e) {
6239 // oh well
6240 }
6241 }
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07006242 setLastInputMethodWindowLw(null, null);
Craig Mautnerf1b67412012-09-19 13:18:29 -07006243 }
6244
6245 @Override
Svetoslav Ganov545252f2012-12-10 18:29:24 -08006246 public boolean canMagnifyWindow(int windowType) {
6247 switch (windowType) {
6248 case WindowManager.LayoutParams.TYPE_INPUT_METHOD:
6249 case WindowManager.LayoutParams.TYPE_INPUT_METHOD_DIALOG:
6250 case WindowManager.LayoutParams.TYPE_NAVIGATION_BAR:
6251 case WindowManager.LayoutParams.TYPE_MAGNIFICATION_OVERLAY: {
6252 return false;
6253 }
6254 }
6255 return true;
6256 }
6257
6258 @Override
6259 public boolean isTopLevelWindow(int windowType) {
6260 if (windowType >= WindowManager.LayoutParams.FIRST_SUB_WINDOW
6261 && windowType <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
6262 return (windowType == WindowManager.LayoutParams.TYPE_APPLICATION_ATTACHED_DIALOG);
6263 }
6264 return true;
6265 }
6266
Jim Miller4eeb4f62012-11-08 00:04:29 -08006267 @Override
Jeff Brownd7a04de2012-06-17 14:17:52 -07006268 public void dump(String prefix, PrintWriter pw, String[] args) {
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006269 pw.print(prefix); pw.print("mSafeMode="); pw.print(mSafeMode);
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006270 pw.print(" mSystemReady="); pw.print(mSystemReady);
6271 pw.print(" mSystemBooted="); pw.println(mSystemBooted);
Jeff Brown2e7760e2012-04-11 15:14:55 -07006272 pw.print(prefix); pw.print("mLidState="); pw.print(mLidState);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006273 pw.print(" mLidOpenRotation="); pw.print(mLidOpenRotation);
Michael Wright3818c922014-09-02 13:59:07 -07006274 pw.print(" mCameraLensCoverState="); pw.print(mCameraLensCoverState);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006275 pw.print(" mHdmiPlugged="); pw.println(mHdmiPlugged);
Dianne Hackborne26ab702011-10-16 13:21:33 -07006276 if (mLastSystemUiFlags != 0 || mResettingSystemUiFlags != 0
6277 || mForceClearedSystemUiFlags != 0) {
6278 pw.print(prefix); pw.print("mLastSystemUiFlags=0x");
6279 pw.print(Integer.toHexString(mLastSystemUiFlags));
6280 pw.print(" mResettingSystemUiFlags=0x");
6281 pw.print(Integer.toHexString(mResettingSystemUiFlags));
6282 pw.print(" mForceClearedSystemUiFlags=0x");
6283 pw.println(Integer.toHexString(mForceClearedSystemUiFlags));
Dianne Hackborndf89e652011-10-06 22:35:11 -07006284 }
Dianne Hackborn4eff8d32011-11-10 19:38:40 -08006285 if (mLastFocusNeedsMenu) {
6286 pw.print(prefix); pw.print("mLastFocusNeedsMenu=");
6287 pw.println(mLastFocusNeedsMenu);
6288 }
Jeff Browna20dda42014-05-27 20:57:24 -07006289 pw.print(prefix); pw.print("mWakeGestureEnabledSetting=");
6290 pw.println(mWakeGestureEnabledSetting);
6291
Jeff Brownbcdfc622014-03-06 19:13:04 -08006292 pw.print(prefix); pw.print("mSupportAutoRotation="); pw.println(mSupportAutoRotation);
Daniel Sandler6396c722013-04-16 20:19:09 -04006293 pw.print(prefix); pw.print("mUiMode="); pw.print(mUiMode);
6294 pw.print(" mDockMode="); pw.print(mDockMode);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006295 pw.print(" mCarDockRotation="); pw.print(mCarDockRotation);
6296 pw.print(" mDeskDockRotation="); pw.println(mDeskDockRotation);
6297 pw.print(prefix); pw.print("mUserRotationMode="); pw.print(mUserRotationMode);
6298 pw.print(" mUserRotation="); pw.print(mUserRotation);
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05006299 pw.print(" mAllowAllRotations="); pw.println(mAllowAllRotations);
Dianne Hackborn6e2281d2012-06-19 17:48:32 -07006300 pw.print(prefix); pw.print("mCurrentAppOrientation="); pw.println(mCurrentAppOrientation);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006301 pw.print(prefix); pw.print("mCarDockEnablesAccelerometer=");
6302 pw.print(mCarDockEnablesAccelerometer);
6303 pw.print(" mDeskDockEnablesAccelerometer=");
6304 pw.println(mDeskDockEnablesAccelerometer);
6305 pw.print(prefix); pw.print("mLidKeyboardAccessibility=");
6306 pw.print(mLidKeyboardAccessibility);
6307 pw.print(" mLidNavigationAccessibility="); pw.print(mLidNavigationAccessibility);
Dianne Hackborn6e2281d2012-06-19 17:48:32 -07006308 pw.print(" mLidControlsSleep="); pw.println(mLidControlsSleep);
Jeff Brown6d8fd272014-05-20 21:24:38 -07006309 pw.print(prefix);
6310 pw.print("mShortPressOnPowerBehavior="); pw.print(mShortPressOnPowerBehavior);
6311 pw.print(" mLongPressOnPowerBehavior="); pw.println(mLongPressOnPowerBehavior);
Jeff Brown13f00f02014-10-31 14:45:50 -07006312 pw.print(prefix);
6313 pw.print("mDoublePressOnPowerBehavior="); pw.print(mDoublePressOnPowerBehavior);
6314 pw.print(" mTriplePressOnPowerBehavior="); pw.println(mTriplePressOnPowerBehavior);
Jeff Brown6d8fd272014-05-20 21:24:38 -07006315 pw.print(prefix); pw.print("mHasSoftInput="); pw.println(mHasSoftInput);
Jeff Brown3ee549c2014-09-22 20:14:39 -07006316 pw.print(prefix); pw.print("mAwake="); pw.println(mAwake);
6317 pw.print(prefix); pw.print("mScreenOnEarly="); pw.print(mScreenOnEarly);
6318 pw.print(" mScreenOnFully="); pw.println(mScreenOnFully);
6319 pw.print(prefix); pw.print("mKeyguardDrawComplete="); pw.print(mKeyguardDrawComplete);
6320 pw.print(" mWindowManagerDrawComplete="); pw.println(mWindowManagerDrawComplete);
6321 pw.print(prefix); pw.print("mOrientationSensorEnabled=");
6322 pw.println(mOrientationSensorEnabled);
Dianne Hackbornc652de82013-02-15 16:32:56 -08006323 pw.print(prefix); pw.print("mOverscanScreen=("); pw.print(mOverscanScreenLeft);
6324 pw.print(","); pw.print(mOverscanScreenTop);
6325 pw.print(") "); pw.print(mOverscanScreenWidth);
6326 pw.print("x"); pw.println(mOverscanScreenHeight);
6327 if (mOverscanLeft != 0 || mOverscanTop != 0
6328 || mOverscanRight != 0 || mOverscanBottom != 0) {
6329 pw.print(prefix); pw.print("mOverscan left="); pw.print(mOverscanLeft);
6330 pw.print(" top="); pw.print(mOverscanTop);
6331 pw.print(" right="); pw.print(mOverscanRight);
6332 pw.print(" bottom="); pw.println(mOverscanBottom);
6333 }
Dianne Hackborn313440842013-02-19 19:22:59 -08006334 pw.print(prefix); pw.print("mRestrictedOverscanScreen=(");
6335 pw.print(mRestrictedOverscanScreenLeft);
6336 pw.print(","); pw.print(mRestrictedOverscanScreenTop);
6337 pw.print(") "); pw.print(mRestrictedOverscanScreenWidth);
6338 pw.print("x"); pw.println(mRestrictedOverscanScreenHeight);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006339 pw.print(prefix); pw.print("mUnrestrictedScreen=("); pw.print(mUnrestrictedScreenLeft);
6340 pw.print(","); pw.print(mUnrestrictedScreenTop);
6341 pw.print(") "); pw.print(mUnrestrictedScreenWidth);
6342 pw.print("x"); pw.println(mUnrestrictedScreenHeight);
6343 pw.print(prefix); pw.print("mRestrictedScreen=("); pw.print(mRestrictedScreenLeft);
6344 pw.print(","); pw.print(mRestrictedScreenTop);
6345 pw.print(") "); pw.print(mRestrictedScreenWidth);
6346 pw.print("x"); pw.println(mRestrictedScreenHeight);
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07006347 pw.print(prefix); pw.print("mStableFullscreen=("); pw.print(mStableFullscreenLeft);
6348 pw.print(","); pw.print(mStableFullscreenTop);
6349 pw.print(")-("); pw.print(mStableFullscreenRight);
6350 pw.print(","); pw.print(mStableFullscreenBottom); pw.println(")");
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07006351 pw.print(prefix); pw.print("mStable=("); pw.print(mStableLeft);
6352 pw.print(","); pw.print(mStableTop);
6353 pw.print(")-("); pw.print(mStableRight);
6354 pw.print(","); pw.print(mStableBottom); pw.println(")");
Dianne Hackborn5c58de32012-04-28 19:52:37 -07006355 pw.print(prefix); pw.print("mSystem=("); pw.print(mSystemLeft);
6356 pw.print(","); pw.print(mSystemTop);
6357 pw.print(")-("); pw.print(mSystemRight);
6358 pw.print(","); pw.print(mSystemBottom); pw.println(")");
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006359 pw.print(prefix); pw.print("mCur=("); pw.print(mCurLeft);
6360 pw.print(","); pw.print(mCurTop);
6361 pw.print(")-("); pw.print(mCurRight);
6362 pw.print(","); pw.print(mCurBottom); pw.println(")");
6363 pw.print(prefix); pw.print("mContent=("); pw.print(mContentLeft);
6364 pw.print(","); pw.print(mContentTop);
6365 pw.print(")-("); pw.print(mContentRight);
6366 pw.print(","); pw.print(mContentBottom); pw.println(")");
Dianne Hackborne30e02f2014-05-27 18:24:45 -07006367 pw.print(prefix); pw.print("mVoiceContent=("); pw.print(mVoiceContentLeft);
6368 pw.print(","); pw.print(mVoiceContentTop);
6369 pw.print(")-("); pw.print(mVoiceContentRight);
6370 pw.print(","); pw.print(mVoiceContentBottom); pw.println(")");
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006371 pw.print(prefix); pw.print("mDock=("); pw.print(mDockLeft);
6372 pw.print(","); pw.print(mDockTop);
6373 pw.print(")-("); pw.print(mDockRight);
6374 pw.print(","); pw.print(mDockBottom); pw.println(")");
Dianne Hackborn5c58de32012-04-28 19:52:37 -07006375 pw.print(prefix); pw.print("mDockLayer="); pw.print(mDockLayer);
6376 pw.print(" mStatusBarLayer="); pw.println(mStatusBarLayer);
Dianne Hackborn7ad44382012-10-18 17:46:00 -07006377 pw.print(prefix); pw.print("mShowingLockscreen="); pw.print(mShowingLockscreen);
6378 pw.print(" mShowingDream="); pw.print(mShowingDream);
6379 pw.print(" mDreamingLockscreen="); pw.println(mDreamingLockscreen);
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07006380 if (mLastInputMethodWindow != null) {
6381 pw.print(prefix); pw.print("mLastInputMethodWindow=");
6382 pw.println(mLastInputMethodWindow);
6383 }
6384 if (mLastInputMethodTargetWindow != null) {
6385 pw.print(prefix); pw.print("mLastInputMethodTargetWindow=");
6386 pw.println(mLastInputMethodTargetWindow);
6387 }
6388 if (mStatusBar != null) {
6389 pw.print(prefix); pw.print("mStatusBar=");
6390 pw.println(mStatusBar);
Jorim Jaggi380ecb82014-03-14 17:25:20 +01006391 pw.print(prefix); pw.print("isStatusBarKeyguard=");
6392 pw.print(isStatusBarKeyguard());
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07006393 }
6394 if (mNavigationBar != null) {
6395 pw.print(prefix); pw.print("mNavigationBar=");
6396 pw.println(mNavigationBar);
6397 }
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07006398 if (mFocusedWindow != null) {
6399 pw.print(prefix); pw.print("mFocusedWindow=");
6400 pw.println(mFocusedWindow);
6401 }
6402 if (mFocusedApp != null) {
6403 pw.print(prefix); pw.print("mFocusedApp=");
6404 pw.println(mFocusedApp);
6405 }
6406 if (mWinDismissingKeyguard != null) {
6407 pw.print(prefix); pw.print("mWinDismissingKeyguard=");
6408 pw.println(mWinDismissingKeyguard);
6409 }
6410 if (mTopFullscreenOpaqueWindowState != null) {
6411 pw.print(prefix); pw.print("mTopFullscreenOpaqueWindowState=");
6412 pw.println(mTopFullscreenOpaqueWindowState);
6413 }
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08006414 if (mForcingShowNavBar) {
6415 pw.print(prefix); pw.print("mForcingShowNavBar=");
6416 pw.println(mForcingShowNavBar); pw.print( "mForcingShowNavBarLayer=");
6417 pw.println(mForcingShowNavBarLayer);
6418 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07006419 pw.print(prefix); pw.print("mTopIsFullscreen="); pw.print(mTopIsFullscreen);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006420 pw.print(" mHideLockScreen="); pw.println(mHideLockScreen);
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07006421 pw.print(prefix); pw.print("mForceStatusBar="); pw.print(mForceStatusBar);
6422 pw.print(" mForceStatusBarFromKeyguard=");
6423 pw.println(mForceStatusBarFromKeyguard);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006424 pw.print(prefix); pw.print("mDismissKeyguard="); pw.print(mDismissKeyguard);
Craig Mautnerad09bcc2012-10-08 13:33:11 -07006425 pw.print(" mWinDismissingKeyguard="); pw.print(mWinDismissingKeyguard);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006426 pw.print(" mHomePressed="); pw.println(mHomePressed);
6427 pw.print(prefix); pw.print("mAllowLockscreenWhenOn="); pw.print(mAllowLockscreenWhenOn);
6428 pw.print(" mLockScreenTimeout="); pw.print(mLockScreenTimeout);
6429 pw.print(" mLockScreenTimerActive="); pw.println(mLockScreenTimerActive);
6430 pw.print(prefix); pw.print("mEndcallBehavior="); pw.print(mEndcallBehavior);
6431 pw.print(" mIncallPowerBehavior="); pw.print(mIncallPowerBehavior);
6432 pw.print(" mLongPressOnHomeBehavior="); pw.println(mLongPressOnHomeBehavior);
6433 pw.print(prefix); pw.print("mLandscapeRotation="); pw.print(mLandscapeRotation);
6434 pw.print(" mSeascapeRotation="); pw.println(mSeascapeRotation);
6435 pw.print(prefix); pw.print("mPortraitRotation="); pw.print(mPortraitRotation);
6436 pw.print(" mUpsideDownRotation="); pw.println(mUpsideDownRotation);
Jeff Brownc82c89ed2013-04-17 17:18:15 -07006437 pw.print(prefix); pw.print("mDemoHdmiRotation="); pw.print(mDemoHdmiRotation);
6438 pw.print(" mDemoHdmiRotationLock="); pw.println(mDemoHdmiRotationLock);
6439 pw.print(prefix); pw.print("mUndockedHdmiRotation="); pw.println(mUndockedHdmiRotation);
Jeff Brown600f0032014-05-22 17:06:00 -07006440
Tim Kilbournd7c0c2e2014-05-29 16:08:10 -07006441 mGlobalKeyManager.dump(prefix, pw);
John Spurlock27735a42013-08-14 17:57:38 -04006442 mStatusBarController.dump(pw, prefix);
6443 mNavigationBarController.dump(pw, prefix);
John Spurlockc6d1c602014-01-17 15:22:06 -05006444 PolicyControl.dump(prefix, pw);
Jeff Brown600f0032014-05-22 17:06:00 -07006445
Jeff Browna20dda42014-05-27 20:57:24 -07006446 if (mWakeGestureListener != null) {
6447 mWakeGestureListener.dump(pw, prefix);
6448 }
Jeff Brown600f0032014-05-22 17:06:00 -07006449 if (mOrientationListener != null) {
6450 mOrientationListener.dump(pw, prefix);
6451 }
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006452 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006453}