blob: 6326c591aa040b13b1a98fd80924f5d416e7bd29 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2006 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package android.view;
18
Jorim Jaggi484851b2017-09-22 16:03:27 +020019import static android.content.pm.ActivityInfo.COLOR_MODE_DEFAULT;
Vishnu Nair1d0fa072018-01-04 07:53:00 -080020import static android.view.WindowLayoutParamsProto.ALPHA;
21import static android.view.WindowLayoutParamsProto.BUTTON_BRIGHTNESS;
22import static android.view.WindowLayoutParamsProto.COLOR_MODE;
23import static android.view.WindowLayoutParamsProto.FLAGS;
Vishnu Nair1d0fa072018-01-04 07:53:00 -080024import static android.view.WindowLayoutParamsProto.FORMAT;
25import static android.view.WindowLayoutParamsProto.GRAVITY;
26import static android.view.WindowLayoutParamsProto.HAS_SYSTEM_UI_LISTENERS;
27import static android.view.WindowLayoutParamsProto.HEIGHT;
28import static android.view.WindowLayoutParamsProto.HORIZONTAL_MARGIN;
29import static android.view.WindowLayoutParamsProto.INPUT_FEATURE_FLAGS;
30import static android.view.WindowLayoutParamsProto.NEEDS_MENU_KEY;
31import static android.view.WindowLayoutParamsProto.PREFERRED_REFRESH_RATE;
32import static android.view.WindowLayoutParamsProto.PRIVATE_FLAGS;
33import static android.view.WindowLayoutParamsProto.ROTATION_ANIMATION;
34import static android.view.WindowLayoutParamsProto.SCREEN_BRIGHTNESS;
35import static android.view.WindowLayoutParamsProto.SOFT_INPUT_MODE;
36import static android.view.WindowLayoutParamsProto.SUBTREE_SYSTEM_UI_VISIBILITY_FLAGS;
37import static android.view.WindowLayoutParamsProto.SYSTEM_UI_VISIBILITY_FLAGS;
38import static android.view.WindowLayoutParamsProto.TYPE;
39import static android.view.WindowLayoutParamsProto.USER_ACTIVITY_TIMEOUT;
40import static android.view.WindowLayoutParamsProto.VERTICAL_MARGIN;
41import static android.view.WindowLayoutParamsProto.WIDTH;
42import static android.view.WindowLayoutParamsProto.WINDOW_ANIMATIONS;
43import static android.view.WindowLayoutParamsProto.X;
44import static android.view.WindowLayoutParamsProto.Y;
Jorim Jaggi484851b2017-09-22 16:03:27 +020045
Jorim Jaggif12ec0f2017-08-23 16:14:10 +020046import android.Manifest.permission;
Yohei Yukawa22dac1c2017-02-12 16:54:16 -080047import android.annotation.IntDef;
Siva Velusamy0d857b92015-04-22 10:23:56 -070048import android.annotation.NonNull;
Albert Chaulk2ccb0b72017-06-20 14:39:29 -040049import android.annotation.RequiresPermission;
Bryce Lee53b9fbd2015-02-06 12:06:34 -080050import android.annotation.SystemApi;
Jeff Sharkeyd86b8fe2017-06-02 17:36:26 -060051import android.annotation.SystemService;
Robert Carrb48380a2017-04-04 14:56:37 -070052import android.annotation.TestApi;
Mathew Inwooda570dee2018-08-17 14:56:00 +010053import android.annotation.UnsupportedAppUsage;
Jorim Jaggi241ae102016-11-02 21:57:33 -070054import android.app.KeyguardManager;
Jeff Browna492c3a2012-08-23 19:48:44 -070055import android.app.Presentation;
56import android.content.Context;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080057import android.content.pm.ActivityInfo;
58import android.graphics.PixelFormat;
Alan Viveretteccb11e12014-07-08 16:04:02 -070059import android.graphics.Rect;
Albert Chaulk2ccb0b72017-06-20 14:39:29 -040060import android.graphics.Region;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080061import android.os.IBinder;
62import android.os.Parcel;
63import android.os.Parcelable;
64import android.text.TextUtils;
65import android.util.Log;
Steven Timotiusaf03df62017-07-18 16:56:43 -070066import android.util.proto.ProtoOutputStream;
Phil Weaver8583ae82018-02-13 11:01:24 -080067import android.view.accessibility.AccessibilityNodeInfo;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080068
Yohei Yukawa22dac1c2017-02-12 16:54:16 -080069import java.lang.annotation.Retention;
70import java.lang.annotation.RetentionPolicy;
Clara Bayarri75e09792015-07-29 16:20:40 +010071import java.util.List;
Wale Ogunwale1f240c92016-02-22 18:04:58 -080072import java.util.Objects;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080073
74/**
75 * The interface that apps use to talk to the window manager.
Jeff Browna492c3a2012-08-23 19:48:44 -070076 * </p><p>
77 * Each window manager instance is bound to a particular {@link Display}.
78 * To obtain a {@link WindowManager} for a different display, use
79 * {@link Context#createDisplayContext} to obtain a {@link Context} for that
80 * display, then use <code>Context.getSystemService(Context.WINDOW_SERVICE)</code>
81 * to get the WindowManager.
82 * </p><p>
83 * The simplest way to show a window on another display is to create a
84 * {@link Presentation}. The presentation will automatically obtain a
85 * {@link WindowManager} and {@link Context} for that display.
86 * </p>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080087 */
Jeff Sharkeyd86b8fe2017-06-02 17:36:26 -060088@SystemService(Context.WINDOW_SERVICE)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080089public interface WindowManager extends ViewManager {
Jorim Jaggi61f39a72015-10-29 16:54:18 +010090
91 /** @hide */
92 int DOCKED_INVALID = -1;
93 /** @hide */
94 int DOCKED_LEFT = 1;
95 /** @hide */
96 int DOCKED_TOP = 2;
97 /** @hide */
98 int DOCKED_RIGHT = 3;
99 /** @hide */
100 int DOCKED_BOTTOM = 4;
101
Winson41275482016-10-10 15:17:45 -0700102 /** @hide */
Winson Chunga89ffed2018-01-25 17:46:11 +0000103 String INPUT_CONSUMER_PIP = "pip_input_consumer";
Winson41275482016-10-10 15:17:45 -0700104 /** @hide */
Winson Chunga89ffed2018-01-25 17:46:11 +0000105 String INPUT_CONSUMER_NAVIGATION = "nav_input_consumer";
Winson41275482016-10-10 15:17:45 -0700106 /** @hide */
Winson Chunga89ffed2018-01-25 17:46:11 +0000107 String INPUT_CONSUMER_WALLPAPER = "wallpaper_input_consumer";
108 /** @hide */
109 String INPUT_CONSUMER_RECENTS_ANIMATION = "recents_animation_input_consumer";
Winson41275482016-10-10 15:17:45 -0700110
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800111 /**
Jorim Jaggif84e2f62018-01-16 14:17:59 +0100112 * Not set up for a transition.
113 * @hide
114 */
115 int TRANSIT_UNSET = -1;
116
117 /**
118 * No animation for transition.
119 * @hide
120 */
121 int TRANSIT_NONE = 0;
122
123 /**
124 * A window in a new activity is being opened on top of an existing one in the same task.
125 * @hide
126 */
127 int TRANSIT_ACTIVITY_OPEN = 6;
128
129 /**
130 * The window in the top-most activity is being closed to reveal the previous activity in the
131 * same task.
132 * @hide
133 */
134 int TRANSIT_ACTIVITY_CLOSE = 7;
135
136 /**
137 * A window in a new task is being opened on top of an existing one in another activity's task.
138 * @hide
139 */
140 int TRANSIT_TASK_OPEN = 8;
141
142 /**
143 * A window in the top-most activity is being closed to reveal the previous activity in a
144 * different task.
145 * @hide
146 */
147 int TRANSIT_TASK_CLOSE = 9;
148
149 /**
150 * A window in an existing task is being displayed on top of an existing one in another
151 * activity's task.
152 * @hide
153 */
154 int TRANSIT_TASK_TO_FRONT = 10;
155
156 /**
157 * A window in an existing task is being put below all other tasks.
158 * @hide
159 */
160 int TRANSIT_TASK_TO_BACK = 11;
161
162 /**
163 * A window in a new activity that doesn't have a wallpaper is being opened on top of one that
164 * does, effectively closing the wallpaper.
165 * @hide
166 */
167 int TRANSIT_WALLPAPER_CLOSE = 12;
168
169 /**
170 * A window in a new activity that does have a wallpaper is being opened on one that didn't,
171 * effectively opening the wallpaper.
172 * @hide
173 */
174 int TRANSIT_WALLPAPER_OPEN = 13;
175
176 /**
177 * A window in a new activity is being opened on top of an existing one, and both are on top
178 * of the wallpaper.
179 * @hide
180 */
181 int TRANSIT_WALLPAPER_INTRA_OPEN = 14;
182
183 /**
184 * The window in the top-most activity is being closed to reveal the previous activity, and
185 * both are on top of the wallpaper.
186 * @hide
187 */
188 int TRANSIT_WALLPAPER_INTRA_CLOSE = 15;
189
190 /**
191 * A window in a new task is being opened behind an existing one in another activity's task.
192 * The new window will show briefly and then be gone.
193 * @hide
194 */
195 int TRANSIT_TASK_OPEN_BEHIND = 16;
196
197 /**
198 * A window in a task is being animated in-place.
199 * @hide
200 */
201 int TRANSIT_TASK_IN_PLACE = 17;
202
203 /**
204 * An activity is being relaunched (e.g. due to configuration change).
205 * @hide
206 */
207 int TRANSIT_ACTIVITY_RELAUNCH = 18;
208
209 /**
210 * A task is being docked from recents.
211 * @hide
212 */
213 int TRANSIT_DOCK_TASK_FROM_RECENTS = 19;
214
215 /**
216 * Keyguard is going away.
217 * @hide
218 */
219 int TRANSIT_KEYGUARD_GOING_AWAY = 20;
220
221 /**
222 * Keyguard is going away with showing an activity behind that requests wallpaper.
223 * @hide
224 */
225 int TRANSIT_KEYGUARD_GOING_AWAY_ON_WALLPAPER = 21;
226
227 /**
228 * Keyguard is being occluded.
229 * @hide
230 */
231 int TRANSIT_KEYGUARD_OCCLUDE = 22;
232
233 /**
234 * Keyguard is being unoccluded.
235 * @hide
236 */
237 int TRANSIT_KEYGUARD_UNOCCLUDE = 23;
238
239 /**
Jorim Jaggi98a9d202018-03-26 16:17:07 +0200240 * A translucent activity is being opened.
241 * @hide
242 */
243 int TRANSIT_TRANSLUCENT_ACTIVITY_OPEN = 24;
244
245 /**
246 * A translucent activity is being closed.
247 * @hide
248 */
249 int TRANSIT_TRANSLUCENT_ACTIVITY_CLOSE = 25;
250
251 /**
Adrian Roos93577212018-04-10 14:12:10 -0700252 * A crashing activity is being closed.
253 * @hide
254 */
255 int TRANSIT_CRASHING_ACTIVITY_CLOSE = 26;
256
257 /**
Evan Rosky2289ba12018-11-19 18:28:18 -0800258 * A task is changing windowing modes
259 * @hide
260 */
261 int TRANSIT_TASK_CHANGE_WINDOWING_MODE = 27;
262
263 /**
Jorim Jaggif84e2f62018-01-16 14:17:59 +0100264 * @hide
265 */
266 @IntDef(prefix = { "TRANSIT_" }, value = {
267 TRANSIT_UNSET,
268 TRANSIT_NONE,
269 TRANSIT_ACTIVITY_OPEN,
270 TRANSIT_ACTIVITY_CLOSE,
271 TRANSIT_TASK_OPEN,
272 TRANSIT_TASK_CLOSE,
273 TRANSIT_TASK_TO_FRONT,
274 TRANSIT_TASK_TO_BACK,
275 TRANSIT_WALLPAPER_CLOSE,
276 TRANSIT_WALLPAPER_OPEN,
277 TRANSIT_WALLPAPER_INTRA_OPEN,
278 TRANSIT_WALLPAPER_INTRA_CLOSE,
279 TRANSIT_TASK_OPEN_BEHIND,
280 TRANSIT_TASK_IN_PLACE,
281 TRANSIT_ACTIVITY_RELAUNCH,
282 TRANSIT_DOCK_TASK_FROM_RECENTS,
283 TRANSIT_KEYGUARD_GOING_AWAY,
284 TRANSIT_KEYGUARD_GOING_AWAY_ON_WALLPAPER,
285 TRANSIT_KEYGUARD_OCCLUDE,
Jorim Jaggi98a9d202018-03-26 16:17:07 +0200286 TRANSIT_KEYGUARD_UNOCCLUDE,
287 TRANSIT_TRANSLUCENT_ACTIVITY_OPEN,
Jorim Jaggi9c52ebb2018-06-01 14:45:24 +0200288 TRANSIT_TRANSLUCENT_ACTIVITY_CLOSE,
Evan Rosky2289ba12018-11-19 18:28:18 -0800289 TRANSIT_CRASHING_ACTIVITY_CLOSE,
290 TRANSIT_TASK_CHANGE_WINDOWING_MODE
Jorim Jaggif84e2f62018-01-16 14:17:59 +0100291 })
292 @Retention(RetentionPolicy.SOURCE)
293 @interface TransitionType {}
294
295 /**
296 * Transition flag: Keyguard is going away, but keeping the notification shade open
297 * @hide
298 */
299 int TRANSIT_FLAG_KEYGUARD_GOING_AWAY_TO_SHADE = 0x1;
300
301 /**
302 * Transition flag: Keyguard is going away, but doesn't want an animation for it
303 * @hide
304 */
305 int TRANSIT_FLAG_KEYGUARD_GOING_AWAY_NO_ANIMATION = 0x2;
306
307 /**
308 * Transition flag: Keyguard is going away while it was showing the system wallpaper.
309 * @hide
310 */
311 int TRANSIT_FLAG_KEYGUARD_GOING_AWAY_WITH_WALLPAPER = 0x4;
312
313 /**
314 * @hide
315 */
316 @IntDef(flag = true, prefix = { "TRANSIT_FLAG_" }, value = {
317 TRANSIT_FLAG_KEYGUARD_GOING_AWAY_TO_SHADE,
318 TRANSIT_FLAG_KEYGUARD_GOING_AWAY_NO_ANIMATION,
319 TRANSIT_FLAG_KEYGUARD_GOING_AWAY_WITH_WALLPAPER,
320 })
321 @Retention(RetentionPolicy.SOURCE)
322 @interface TransitionFlags {}
323
324 /**
Chilun8753ad32018-10-09 15:56:45 +0800325 * Remove content mode: Indicates remove content mode is currently not defined.
326 * @hide
327 */
328 int REMOVE_CONTENT_MODE_UNDEFINED = 0;
329
330 /**
331 * Remove content mode: Indicates that when display is removed, all its activities will be moved
332 * to the primary display and the topmost activity should become focused.
333 * @hide
334 */
335 int REMOVE_CONTENT_MODE_MOVE_TO_PRIMARY = 1;
336
337 /**
338 * Remove content mode: Indicates that when display is removed, all its stacks and tasks will be
339 * removed, all activities will be destroyed according to the usual lifecycle.
340 * @hide
341 */
342 int REMOVE_CONTENT_MODE_DESTROY = 2;
343
344 /**
345 * @hide
346 */
347 @IntDef(prefix = { "REMOVE_CONTENT_MODE_" }, value = {
348 REMOVE_CONTENT_MODE_UNDEFINED,
349 REMOVE_CONTENT_MODE_MOVE_TO_PRIMARY,
350 REMOVE_CONTENT_MODE_DESTROY,
351 })
352 @interface RemoveContentMode {}
353
354 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800355 * Exception that is thrown when trying to add view whose
Jorim Jaggi380ecb82014-03-14 17:25:20 +0100356 * {@link LayoutParams} {@link LayoutParams#token}
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800357 * is invalid.
358 */
359 public static class BadTokenException extends RuntimeException {
360 public BadTokenException() {
361 }
362
363 public BadTokenException(String name) {
364 super(name);
365 }
366 }
367
368 /**
Craig Mautner6018aee2012-10-23 14:27:49 -0700369 * Exception that is thrown when calling {@link #addView} to a secondary display that cannot
370 * be found. See {@link android.app.Presentation} for more information on secondary displays.
371 */
372 public static class InvalidDisplayException extends RuntimeException {
373 public InvalidDisplayException() {
374 }
375
376 public InvalidDisplayException(String name) {
377 super(name);
378 }
379 }
380
381 /**
Jeff Browna492c3a2012-08-23 19:48:44 -0700382 * Returns the {@link Display} upon which this {@link WindowManager} instance
383 * will create new windows.
384 * <p>
385 * Despite the name of this method, the display that is returned is not
386 * necessarily the primary display of the system (see {@link Display#DEFAULT_DISPLAY}).
387 * The returned display could instead be a secondary display that this
388 * window manager instance is managing. Think of it as the display that
389 * this {@link WindowManager} instance uses by default.
390 * </p><p>
391 * To create windows on a different display, you need to obtain a
392 * {@link WindowManager} for that {@link Display}. (See the {@link WindowManager}
393 * class documentation for more information.)
394 * </p>
395 *
396 * @return The display that this window manager is managing.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800397 */
398 public Display getDefaultDisplay();
Jeff Browna492c3a2012-08-23 19:48:44 -0700399
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800400 /**
401 * Special variation of {@link #removeView} that immediately invokes
402 * the given view hierarchy's {@link View#onDetachedFromWindow()
403 * View.onDetachedFromWindow()} methods before returning. This is not
404 * for normal applications; using it correctly requires great care.
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -0700405 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800406 * @param view The view to be removed.
407 */
408 public void removeViewImmediate(View view);
Jeff Brownd32460c2012-07-20 16:15:36 -0700409
Clara Bayarri75e09792015-07-29 16:20:40 +0100410 /**
411 * Used to asynchronously request Keyboard Shortcuts from the focused window.
412 *
413 * @hide
414 */
415 public interface KeyboardShortcutsReceiver {
416 /**
417 * Callback used when the focused window keyboard shortcuts are ready to be displayed.
418 *
419 * @param result The keyboard shortcuts to be displayed.
420 */
421 void onKeyboardShortcutsReceived(List<KeyboardShortcutGroup> result);
422 }
423
424 /**
Muyuan Li6ca619f2016-03-08 13:30:42 -0800425 * Message for taking fullscreen screenshot
426 * @hide
427 */
428 final int TAKE_SCREENSHOT_FULLSCREEN = 1;
429
430 /**
431 * Message for taking screenshot of selected region.
432 * @hide
433 */
434 final int TAKE_SCREENSHOT_SELECTED_REGION = 2;
435
436 /**
Clara Bayarri75e09792015-07-29 16:20:40 +0100437 * @hide
438 */
439 public static final String PARCEL_KEY_SHORTCUTS_ARRAY = "shortcuts_array";
440
441 /**
442 * Request for keyboard shortcuts to be retrieved asynchronously.
443 *
444 * @param receiver The callback to be triggered when the result is ready.
445 *
446 * @hide
447 */
Clara Bayarrifcd7e802016-03-10 12:58:18 +0000448 public void requestAppKeyboardShortcuts(final KeyboardShortcutsReceiver receiver, int deviceId);
Clara Bayarri75e09792015-07-29 16:20:40 +0100449
Albert Chaulk2ccb0b72017-06-20 14:39:29 -0400450 /**
451 * Return the touch region for the current IME window, or an empty region if there is none.
452 *
453 * @return The region of the IME that is accepting touch inputs, or null if there is no IME, no
454 * region or there was an error.
455 *
456 * @hide
457 */
458 @SystemApi
459 @RequiresPermission(android.Manifest.permission.RESTRICTED_VR_ACCESS)
460 public Region getCurrentImeTouchRegion();
461
Chilun8753ad32018-10-09 15:56:45 +0800462 /**
463 * Sets that the display should show its content when non-secure keyguard is shown.
464 *
465 * @param displayId Display ID.
466 * @param shouldShow Indicates that the display should show its content when non-secure keyguard
467 * is shown.
468 * @see KeyguardManager#isDeviceSecure()
469 * @see KeyguardManager#isDeviceLocked()
470 * @hide
471 */
472 @TestApi
473 default void setShouldShowWithInsecureKeyguard(int displayId, boolean shouldShow) {
474 }
475
476 /**
477 * Sets that the display should show system decors.
478 * <p>
479 * System decors include status bar, navigation bar, launcher.
480 * </p>
481 *
482 * @param displayId The id of the display.
483 * @param shouldShow Indicates that the display should show system decors.
484 * @hide
485 */
486 @TestApi
487 default void setShouldShowSystemDecors(int displayId, boolean shouldShow) {
488 }
489
490 /**
491 * Sets that the display should show IME.
492 *
493 * @param displayId Display ID.
494 * @param shouldShow Indicates that the display should show IME.
495 * @see KeyguardManager#isDeviceSecure()
496 * @see KeyguardManager#isDeviceLocked()
497 * @hide
498 */
499 @TestApi
500 default void setShouldShowIme(int displayId, boolean shouldShow) {
501 }
502
Filip Gruszczynski1a4dfe52015-11-15 10:58:57 -0800503 public static class LayoutParams extends ViewGroup.LayoutParams implements Parcelable {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800504 /**
505 * X position for this window. With the default gravity it is ignored.
Fabrice Di Meglio9e3b0022011-06-06 16:30:29 -0700506 * When using {@link Gravity#LEFT} or {@link Gravity#START} or {@link Gravity#RIGHT} or
507 * {@link Gravity#END} it provides an offset from the given edge.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800508 */
Romain Guy529b60a2010-08-03 18:05:47 -0700509 @ViewDebug.ExportedProperty
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800510 public int x;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -0700511
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800512 /**
513 * Y position for this window. With the default gravity it is ignored.
514 * When using {@link Gravity#TOP} or {@link Gravity#BOTTOM} it provides
515 * an offset from the given edge.
516 */
Romain Guy529b60a2010-08-03 18:05:47 -0700517 @ViewDebug.ExportedProperty
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800518 public int y;
519
520 /**
521 * Indicates how much of the extra space will be allocated horizontally
522 * to the view associated with these LayoutParams. Specify 0 if the view
523 * should not be stretched. Otherwise the extra pixels will be pro-rated
524 * among all views whose weight is greater than 0.
525 */
Romain Guy529b60a2010-08-03 18:05:47 -0700526 @ViewDebug.ExportedProperty
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800527 public float horizontalWeight;
528
529 /**
530 * Indicates how much of the extra space will be allocated vertically
531 * to the view associated with these LayoutParams. Specify 0 if the view
532 * should not be stretched. Otherwise the extra pixels will be pro-rated
533 * among all views whose weight is greater than 0.
534 */
Romain Guy529b60a2010-08-03 18:05:47 -0700535 @ViewDebug.ExportedProperty
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800536 public float verticalWeight;
Romain Guy529b60a2010-08-03 18:05:47 -0700537
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800538 /**
539 * The general type of window. There are three main classes of
540 * window types:
541 * <ul>
542 * <li> <strong>Application windows</strong> (ranging from
543 * {@link #FIRST_APPLICATION_WINDOW} to
544 * {@link #LAST_APPLICATION_WINDOW}) are normal top-level application
545 * windows. For these types of windows, the {@link #token} must be
546 * set to the token of the activity they are a part of (this will
547 * normally be done for you if {@link #token} is null).
548 * <li> <strong>Sub-windows</strong> (ranging from
549 * {@link #FIRST_SUB_WINDOW} to
550 * {@link #LAST_SUB_WINDOW}) are associated with another top-level
551 * window. For these types of windows, the {@link #token} must be
552 * the token of the window it is attached to.
553 * <li> <strong>System windows</strong> (ranging from
554 * {@link #FIRST_SYSTEM_WINDOW} to
555 * {@link #LAST_SYSTEM_WINDOW}) are special types of windows for
556 * use by the system for specific purposes. They should not normally
557 * be used by applications, and a special permission is required
558 * to use them.
559 * </ul>
Wale Ogunwale0a4dc222015-04-14 12:58:42 -0700560 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800561 * @see #TYPE_BASE_APPLICATION
562 * @see #TYPE_APPLICATION
563 * @see #TYPE_APPLICATION_STARTING
Chong Zhangfea963e2016-08-15 17:14:16 -0700564 * @see #TYPE_DRAWN_APPLICATION
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800565 * @see #TYPE_APPLICATION_PANEL
566 * @see #TYPE_APPLICATION_MEDIA
567 * @see #TYPE_APPLICATION_SUB_PANEL
568 * @see #TYPE_APPLICATION_ATTACHED_DIALOG
569 * @see #TYPE_STATUS_BAR
570 * @see #TYPE_SEARCH_BAR
571 * @see #TYPE_PHONE
572 * @see #TYPE_SYSTEM_ALERT
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800573 * @see #TYPE_TOAST
574 * @see #TYPE_SYSTEM_OVERLAY
575 * @see #TYPE_PRIORITY_PHONE
576 * @see #TYPE_STATUS_BAR_PANEL
577 * @see #TYPE_SYSTEM_DIALOG
578 * @see #TYPE_KEYGUARD_DIALOG
579 * @see #TYPE_SYSTEM_ERROR
580 * @see #TYPE_INPUT_METHOD
581 * @see #TYPE_INPUT_METHOD_DIALOG
582 */
Joe Onorato8f2bd432010-03-25 11:45:28 -0700583 @ViewDebug.ExportedProperty(mapping = {
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700584 @ViewDebug.IntToString(from = TYPE_BASE_APPLICATION,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200585 to = "BASE_APPLICATION"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700586 @ViewDebug.IntToString(from = TYPE_APPLICATION,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200587 to = "APPLICATION"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700588 @ViewDebug.IntToString(from = TYPE_APPLICATION_STARTING,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200589 to = "APPLICATION_STARTING"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700590 @ViewDebug.IntToString(from = TYPE_DRAWN_APPLICATION,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200591 to = "DRAWN_APPLICATION"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700592 @ViewDebug.IntToString(from = TYPE_APPLICATION_PANEL,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200593 to = "APPLICATION_PANEL"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700594 @ViewDebug.IntToString(from = TYPE_APPLICATION_MEDIA,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200595 to = "APPLICATION_MEDIA"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700596 @ViewDebug.IntToString(from = TYPE_APPLICATION_SUB_PANEL,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200597 to = "APPLICATION_SUB_PANEL"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700598 @ViewDebug.IntToString(from = TYPE_APPLICATION_ABOVE_SUB_PANEL,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200599 to = "APPLICATION_ABOVE_SUB_PANEL"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700600 @ViewDebug.IntToString(from = TYPE_APPLICATION_ATTACHED_DIALOG,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200601 to = "APPLICATION_ATTACHED_DIALOG"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700602 @ViewDebug.IntToString(from = TYPE_APPLICATION_MEDIA_OVERLAY,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200603 to = "APPLICATION_MEDIA_OVERLAY"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700604 @ViewDebug.IntToString(from = TYPE_STATUS_BAR,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200605 to = "STATUS_BAR"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700606 @ViewDebug.IntToString(from = TYPE_SEARCH_BAR,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200607 to = "SEARCH_BAR"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700608 @ViewDebug.IntToString(from = TYPE_PHONE,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200609 to = "PHONE"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700610 @ViewDebug.IntToString(from = TYPE_SYSTEM_ALERT,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200611 to = "SYSTEM_ALERT"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700612 @ViewDebug.IntToString(from = TYPE_TOAST,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200613 to = "TOAST"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700614 @ViewDebug.IntToString(from = TYPE_SYSTEM_OVERLAY,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200615 to = "SYSTEM_OVERLAY"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700616 @ViewDebug.IntToString(from = TYPE_PRIORITY_PHONE,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200617 to = "PRIORITY_PHONE"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700618 @ViewDebug.IntToString(from = TYPE_SYSTEM_DIALOG,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200619 to = "SYSTEM_DIALOG"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700620 @ViewDebug.IntToString(from = TYPE_KEYGUARD_DIALOG,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200621 to = "KEYGUARD_DIALOG"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700622 @ViewDebug.IntToString(from = TYPE_SYSTEM_ERROR,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200623 to = "SYSTEM_ERROR"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700624 @ViewDebug.IntToString(from = TYPE_INPUT_METHOD,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200625 to = "INPUT_METHOD"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700626 @ViewDebug.IntToString(from = TYPE_INPUT_METHOD_DIALOG,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200627 to = "INPUT_METHOD_DIALOG"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700628 @ViewDebug.IntToString(from = TYPE_WALLPAPER,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200629 to = "WALLPAPER"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700630 @ViewDebug.IntToString(from = TYPE_STATUS_BAR_PANEL,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200631 to = "STATUS_BAR_PANEL"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700632 @ViewDebug.IntToString(from = TYPE_SECURE_SYSTEM_OVERLAY,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200633 to = "SECURE_SYSTEM_OVERLAY"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700634 @ViewDebug.IntToString(from = TYPE_DRAG,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200635 to = "DRAG"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700636 @ViewDebug.IntToString(from = TYPE_STATUS_BAR_SUB_PANEL,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200637 to = "STATUS_BAR_SUB_PANEL"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700638 @ViewDebug.IntToString(from = TYPE_POINTER,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200639 to = "POINTER"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700640 @ViewDebug.IntToString(from = TYPE_NAVIGATION_BAR,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200641 to = "NAVIGATION_BAR"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700642 @ViewDebug.IntToString(from = TYPE_VOLUME_OVERLAY,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200643 to = "VOLUME_OVERLAY"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700644 @ViewDebug.IntToString(from = TYPE_BOOT_PROGRESS,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200645 to = "BOOT_PROGRESS"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700646 @ViewDebug.IntToString(from = TYPE_INPUT_CONSUMER,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200647 to = "INPUT_CONSUMER"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700648 @ViewDebug.IntToString(from = TYPE_DREAM,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200649 to = "DREAM"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700650 @ViewDebug.IntToString(from = TYPE_NAVIGATION_BAR_PANEL,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200651 to = "NAVIGATION_BAR_PANEL"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700652 @ViewDebug.IntToString(from = TYPE_DISPLAY_OVERLAY,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200653 to = "DISPLAY_OVERLAY"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700654 @ViewDebug.IntToString(from = TYPE_MAGNIFICATION_OVERLAY,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200655 to = "MAGNIFICATION_OVERLAY"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700656 @ViewDebug.IntToString(from = TYPE_PRESENTATION,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200657 to = "PRESENTATION"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700658 @ViewDebug.IntToString(from = TYPE_PRIVATE_PRESENTATION,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200659 to = "PRIVATE_PRESENTATION"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700660 @ViewDebug.IntToString(from = TYPE_VOICE_INTERACTION,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200661 to = "VOICE_INTERACTION"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700662 @ViewDebug.IntToString(from = TYPE_VOICE_INTERACTION_STARTING,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200663 to = "VOICE_INTERACTION_STARTING"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700664 @ViewDebug.IntToString(from = TYPE_DOCK_DIVIDER,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200665 to = "DOCK_DIVIDER"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700666 @ViewDebug.IntToString(from = TYPE_QS_DIALOG,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200667 to = "QS_DIALOG"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700668 @ViewDebug.IntToString(from = TYPE_SCREENSHOT,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200669 to = "SCREENSHOT"),
Wale Ogunwale5cd907d2017-01-26 14:14:08 -0800670 @ViewDebug.IntToString(from = TYPE_APPLICATION_OVERLAY,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200671 to = "APPLICATION_OVERLAY")
Joe Onorato8f2bd432010-03-25 11:45:28 -0700672 })
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800673 public int type;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -0700674
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800675 /**
676 * Start of window types that represent normal application windows.
677 */
678 public static final int FIRST_APPLICATION_WINDOW = 1;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -0700679
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800680 /**
681 * Window type: an application window that serves as the "base" window
682 * of the overall application; all other application windows will
683 * appear on top of it.
Craig Mautner5962b122012-10-05 14:45:52 -0700684 * In multiuser systems shows only on the owning user's window.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800685 */
686 public static final int TYPE_BASE_APPLICATION = 1;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -0700687
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800688 /**
689 * Window type: a normal application window. The {@link #token} must be
690 * an Activity token identifying who the window belongs to.
Craig Mautner5962b122012-10-05 14:45:52 -0700691 * In multiuser systems shows only on the owning user's window.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800692 */
693 public static final int TYPE_APPLICATION = 2;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -0700694
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800695 /**
696 * Window type: special application window that is displayed while the
697 * application is starting. Not for use by applications themselves;
698 * this is used by the system to display something until the
699 * application can show its own windows.
Craig Mautner5962b122012-10-05 14:45:52 -0700700 * In multiuser systems shows on all users' windows.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800701 */
702 public static final int TYPE_APPLICATION_STARTING = 3;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -0700703
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800704 /**
Chong Zhangfea963e2016-08-15 17:14:16 -0700705 * Window type: a variation on TYPE_APPLICATION that ensures the window
706 * manager will wait for this window to be drawn before the app is shown.
707 * In multiuser systems shows only on the owning user's window.
708 */
709 public static final int TYPE_DRAWN_APPLICATION = 4;
710
711 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800712 * End of types of application windows.
713 */
714 public static final int LAST_APPLICATION_WINDOW = 99;
Wale Ogunwale0a4dc222015-04-14 12:58:42 -0700715
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800716 /**
717 * Start of types of sub-windows. The {@link #token} of these windows
718 * must be set to the window they are attached to. These types of
719 * windows are kept next to their attached window in Z-order, and their
720 * coordinate space is relative to their attached window.
721 */
Wale Ogunwale0a4dc222015-04-14 12:58:42 -0700722 public static final int FIRST_SUB_WINDOW = 1000;
723
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800724 /**
725 * Window type: a panel on top of an application window. These windows
726 * appear on top of their attached window.
727 */
Wale Ogunwale0a4dc222015-04-14 12:58:42 -0700728 public static final int TYPE_APPLICATION_PANEL = FIRST_SUB_WINDOW;
729
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800730 /**
John Spurlock33291d82013-03-13 14:45:14 -0400731 * Window type: window for showing media (such as video). These windows
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800732 * are displayed behind their attached window.
733 */
Wale Ogunwale0a4dc222015-04-14 12:58:42 -0700734 public static final int TYPE_APPLICATION_MEDIA = FIRST_SUB_WINDOW + 1;
735
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800736 /**
737 * Window type: a sub-panel on top of an application window. These
738 * windows are displayed on top their attached window and any
739 * {@link #TYPE_APPLICATION_PANEL} panels.
740 */
Wale Ogunwale0a4dc222015-04-14 12:58:42 -0700741 public static final int TYPE_APPLICATION_SUB_PANEL = FIRST_SUB_WINDOW + 2;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800742
743 /** Window type: like {@link #TYPE_APPLICATION_PANEL}, but layout
744 * of the window happens as that of a top-level window, <em>not</em>
745 * as a child of its container.
746 */
Wale Ogunwale0a4dc222015-04-14 12:58:42 -0700747 public static final int TYPE_APPLICATION_ATTACHED_DIALOG = FIRST_SUB_WINDOW + 3;
748
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800749 /**
Dianne Hackbornc4d5d022009-05-21 17:32:42 -0700750 * Window type: window for showing overlays on top of media windows.
751 * These windows are displayed between TYPE_APPLICATION_MEDIA and the
752 * application window. They should be translucent to be useful. This
753 * is a big ugly hack so:
754 * @hide
755 */
Mathew Inwooda570dee2018-08-17 14:56:00 +0100756 @UnsupportedAppUsage
Wale Ogunwale0a4dc222015-04-14 12:58:42 -0700757 public static final int TYPE_APPLICATION_MEDIA_OVERLAY = FIRST_SUB_WINDOW + 4;
758
759 /**
760 * Window type: a above sub-panel on top of an application window and it's
761 * sub-panel windows. These windows are displayed on top of their attached window
762 * and any {@link #TYPE_APPLICATION_SUB_PANEL} panels.
Wale Ogunwale3540f932015-06-02 11:07:07 -0700763 * @hide
Wale Ogunwale0a4dc222015-04-14 12:58:42 -0700764 */
765 public static final int TYPE_APPLICATION_ABOVE_SUB_PANEL = FIRST_SUB_WINDOW + 5;
766
Dianne Hackbornc4d5d022009-05-21 17:32:42 -0700767 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800768 * End of types of sub-windows.
769 */
Wale Ogunwale0a4dc222015-04-14 12:58:42 -0700770 public static final int LAST_SUB_WINDOW = 1999;
771
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800772 /**
773 * Start of system-specific window types. These are not normally
774 * created by applications.
775 */
776 public static final int FIRST_SYSTEM_WINDOW = 2000;
Wale Ogunwale0a4dc222015-04-14 12:58:42 -0700777
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800778 /**
779 * Window type: the status bar. There can be only one status bar
780 * window; it is placed at the top of the screen, and all other
781 * windows are shifted down so they are below it.
Craig Mautner88400d32012-09-30 12:35:45 -0700782 * In multiuser systems shows on all users' windows.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800783 */
784 public static final int TYPE_STATUS_BAR = FIRST_SYSTEM_WINDOW;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -0700785
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800786 /**
787 * Window type: the search bar. There can be only one search bar
788 * window; it is placed at the top of the screen.
Craig Mautner88400d32012-09-30 12:35:45 -0700789 * In multiuser systems shows on all users' windows.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800790 */
791 public static final int TYPE_SEARCH_BAR = FIRST_SYSTEM_WINDOW+1;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -0700792
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800793 /**
794 * Window type: phone. These are non-application windows providing
795 * user interaction with the phone (in particular incoming calls).
796 * These windows are normally placed above all applications, but behind
797 * the status bar.
Craig Mautner88400d32012-09-30 12:35:45 -0700798 * In multiuser systems shows on all users' windows.
Wale Ogunwale5cd907d2017-01-26 14:14:08 -0800799 * @deprecated for non-system apps. Use {@link #TYPE_APPLICATION_OVERLAY} instead.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800800 */
Wale Ogunwale5cd907d2017-01-26 14:14:08 -0800801 @Deprecated
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800802 public static final int TYPE_PHONE = FIRST_SYSTEM_WINDOW+2;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -0700803
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800804 /**
805 * Window type: system window, such as low power alert. These windows
806 * are always on top of application windows.
Craig Mautner88400d32012-09-30 12:35:45 -0700807 * In multiuser systems shows only on the owning user's window.
Wale Ogunwale5cd907d2017-01-26 14:14:08 -0800808 * @deprecated for non-system apps. Use {@link #TYPE_APPLICATION_OVERLAY} instead.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800809 */
Wale Ogunwale5cd907d2017-01-26 14:14:08 -0800810 @Deprecated
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800811 public static final int TYPE_SYSTEM_ALERT = FIRST_SYSTEM_WINDOW+3;
Jorim Jaggi380ecb82014-03-14 17:25:20 +0100812
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800813 /**
814 * Window type: keyguard window.
Craig Mautner88400d32012-09-30 12:35:45 -0700815 * In multiuser systems shows on all users' windows.
Jorim Jaggie411fdf2014-07-28 23:00:44 +0200816 * @removed
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800817 */
818 public static final int TYPE_KEYGUARD = FIRST_SYSTEM_WINDOW+4;
Jorim Jaggi380ecb82014-03-14 17:25:20 +0100819
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800820 /**
821 * Window type: transient notifications.
Craig Mautner88400d32012-09-30 12:35:45 -0700822 * In multiuser systems shows only on the owning user's window.
Wale Ogunwale5cd907d2017-01-26 14:14:08 -0800823 * @deprecated for non-system apps. Use {@link #TYPE_APPLICATION_OVERLAY} instead.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800824 */
Wale Ogunwale5cd907d2017-01-26 14:14:08 -0800825 @Deprecated
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800826 public static final int TYPE_TOAST = FIRST_SYSTEM_WINDOW+5;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -0700827
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800828 /**
829 * Window type: system overlay windows, which need to be displayed
830 * on top of everything else. These windows must not take input
831 * focus, or they will interfere with the keyguard.
Craig Mautner88400d32012-09-30 12:35:45 -0700832 * In multiuser systems shows only on the owning user's window.
Wale Ogunwale5cd907d2017-01-26 14:14:08 -0800833 * @deprecated for non-system apps. Use {@link #TYPE_APPLICATION_OVERLAY} instead.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800834 */
Wale Ogunwale5cd907d2017-01-26 14:14:08 -0800835 @Deprecated
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800836 public static final int TYPE_SYSTEM_OVERLAY = FIRST_SYSTEM_WINDOW+6;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -0700837
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800838 /**
839 * Window type: priority phone UI, which needs to be displayed even if
840 * the keyguard is active. These windows must not take input
841 * focus, or they will interfere with the keyguard.
Craig Mautner88400d32012-09-30 12:35:45 -0700842 * In multiuser systems shows on all users' windows.
Wale Ogunwale5cd907d2017-01-26 14:14:08 -0800843 * @deprecated for non-system apps. Use {@link #TYPE_APPLICATION_OVERLAY} instead.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800844 */
Wale Ogunwale5cd907d2017-01-26 14:14:08 -0800845 @Deprecated
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800846 public static final int TYPE_PRIORITY_PHONE = FIRST_SYSTEM_WINDOW+7;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -0700847
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800848 /**
849 * Window type: panel that slides out from the status bar
Craig Mautner88400d32012-09-30 12:35:45 -0700850 * In multiuser systems shows on all users' windows.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800851 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800852 public static final int TYPE_SYSTEM_DIALOG = FIRST_SYSTEM_WINDOW+8;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -0700853
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800854 /**
855 * Window type: dialogs that the keyguard shows
Craig Mautner88400d32012-09-30 12:35:45 -0700856 * In multiuser systems shows on all users' windows.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800857 */
858 public static final int TYPE_KEYGUARD_DIALOG = FIRST_SYSTEM_WINDOW+9;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -0700859
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800860 /**
861 * Window type: internal system error windows, appear on top of
862 * everything they can.
Craig Mautner88400d32012-09-30 12:35:45 -0700863 * In multiuser systems shows only on the owning user's window.
Wale Ogunwale5cd907d2017-01-26 14:14:08 -0800864 * @deprecated for non-system apps. Use {@link #TYPE_APPLICATION_OVERLAY} instead.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800865 */
Wale Ogunwale5cd907d2017-01-26 14:14:08 -0800866 @Deprecated
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800867 public static final int TYPE_SYSTEM_ERROR = FIRST_SYSTEM_WINDOW+10;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -0700868
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800869 /**
870 * Window type: internal input methods windows, which appear above
871 * the normal UI. Application windows may be resized or panned to keep
872 * the input focus visible while this window is displayed.
Craig Mautner88400d32012-09-30 12:35:45 -0700873 * In multiuser systems shows only on the owning user's window.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800874 */
875 public static final int TYPE_INPUT_METHOD = FIRST_SYSTEM_WINDOW+11;
876
877 /**
878 * Window type: internal input methods dialog windows, which appear above
879 * the current input method window.
Craig Mautner88400d32012-09-30 12:35:45 -0700880 * In multiuser systems shows only on the owning user's window.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800881 */
882 public static final int TYPE_INPUT_METHOD_DIALOG= FIRST_SYSTEM_WINDOW+12;
883
884 /**
Dianne Hackborn4c62fc02009-08-08 20:40:27 -0700885 * Window type: wallpaper window, placed behind any window that wants
886 * to sit on top of the wallpaper.
Craig Mautner88400d32012-09-30 12:35:45 -0700887 * In multiuser systems shows only on the owning user's window.
Dianne Hackborn4c62fc02009-08-08 20:40:27 -0700888 */
889 public static final int TYPE_WALLPAPER = FIRST_SYSTEM_WINDOW+13;
890
891 /**
Joe Onorato29fc2c92010-11-24 10:26:50 -0800892 * Window type: panel that slides out from over the status bar
Craig Mautner88400d32012-09-30 12:35:45 -0700893 * In multiuser systems shows on all users' windows.
Dianne Hackbornbadc47e2009-11-08 17:37:07 -0800894 */
895 public static final int TYPE_STATUS_BAR_PANEL = FIRST_SYSTEM_WINDOW+14;
Jeff Brown3b2b3542010-10-15 00:54:27 -0700896
897 /**
898 * Window type: secure system overlay windows, which need to be displayed
899 * on top of everything else. These windows must not take input
900 * focus, or they will interfere with the keyguard.
901 *
902 * This is exactly like {@link #TYPE_SYSTEM_OVERLAY} except that only the
903 * system itself is allowed to create these overlays. Applications cannot
904 * obtain permission to create secure system overlays.
Craig Mautner88400d32012-09-30 12:35:45 -0700905 *
906 * In multiuser systems shows only on the owning user's window.
Jeff Brown3b2b3542010-10-15 00:54:27 -0700907 * @hide
908 */
Mathew Inwooda570dee2018-08-17 14:56:00 +0100909 @UnsupportedAppUsage
Jeff Brown3b2b3542010-10-15 00:54:27 -0700910 public static final int TYPE_SECURE_SYSTEM_OVERLAY = FIRST_SYSTEM_WINDOW+15;
911
Dianne Hackbornbadc47e2009-11-08 17:37:07 -0800912 /**
Christopher Tatea53146c2010-09-07 11:57:52 -0700913 * Window type: the drag-and-drop pseudowindow. There is only one
914 * drag layer (at most), and it is placed on top of all other windows.
Craig Mautner88400d32012-09-30 12:35:45 -0700915 * In multiuser systems shows only on the owning user's window.
Christopher Tatea53146c2010-09-07 11:57:52 -0700916 * @hide
917 */
Jeff Brown3b2b3542010-10-15 00:54:27 -0700918 public static final int TYPE_DRAG = FIRST_SYSTEM_WINDOW+16;
Christopher Tatea53146c2010-09-07 11:57:52 -0700919
920 /**
Robert Carr8360a782017-11-22 12:47:58 -0800921 * Window type: panel that slides out from over the status bar
922 * In multiuser systems shows on all users' windows. These windows
923 * are displayed on top of the stauts bar and any {@link #TYPE_STATUS_BAR_PANEL}
924 * windows.
Joe Onoratoa89e9032010-11-24 11:13:44 -0800925 * @hide
Joe Onorato29fc2c92010-11-24 10:26:50 -0800926 */
927 public static final int TYPE_STATUS_BAR_SUB_PANEL = FIRST_SYSTEM_WINDOW+17;
928
Jeff Brown83c09682010-12-23 17:50:18 -0800929 /**
930 * Window type: (mouse) pointer
Craig Mautner88400d32012-09-30 12:35:45 -0700931 * In multiuser systems shows on all users' windows.
Jeff Brown83c09682010-12-23 17:50:18 -0800932 * @hide
933 */
934 public static final int TYPE_POINTER = FIRST_SYSTEM_WINDOW+18;
Joe Onorato29fc2c92010-11-24 10:26:50 -0800935
936 /**
Daniel Sandler8956dbb2011-04-22 07:55:02 -0400937 * Window type: Navigation bar (when distinct from status bar)
Craig Mautner88400d32012-09-30 12:35:45 -0700938 * In multiuser systems shows on all users' windows.
Daniel Sandler8956dbb2011-04-22 07:55:02 -0400939 * @hide
940 */
941 public static final int TYPE_NAVIGATION_BAR = FIRST_SYSTEM_WINDOW+19;
942
943 /**
Dianne Hackborne8ecde12011-08-03 18:55:19 -0700944 * Window type: The volume level overlay/dialog shown when the user
945 * changes the system volume.
Craig Mautner88400d32012-09-30 12:35:45 -0700946 * In multiuser systems shows on all users' windows.
Dianne Hackborne8ecde12011-08-03 18:55:19 -0700947 * @hide
948 */
949 public static final int TYPE_VOLUME_OVERLAY = FIRST_SYSTEM_WINDOW+20;
950
951 /**
Dianne Hackborn29aae6f2011-08-18 18:30:09 -0700952 * Window type: The boot progress dialog, goes on top of everything
953 * in the world.
Craig Mautner88400d32012-09-30 12:35:45 -0700954 * In multiuser systems shows on all users' windows.
Dianne Hackborn29aae6f2011-08-18 18:30:09 -0700955 * @hide
956 */
957 public static final int TYPE_BOOT_PROGRESS = FIRST_SYSTEM_WINDOW+21;
958
959 /**
Selim Cinekf83e8242015-05-19 18:08:14 -0700960 * Window type to consume input events when the systemUI bars are hidden.
Craig Mautner88400d32012-09-30 12:35:45 -0700961 * In multiuser systems shows on all users' windows.
Dianne Hackborndf89e652011-10-06 22:35:11 -0700962 * @hide
963 */
Selim Cinekf83e8242015-05-19 18:08:14 -0700964 public static final int TYPE_INPUT_CONSUMER = FIRST_SYSTEM_WINDOW+22;
Dianne Hackborndf89e652011-10-06 22:35:11 -0700965
966 /**
Daniel Sandler7d276c32012-01-30 14:33:52 -0500967 * Window type: Dreams (screen saver) window, just above keyguard.
Craig Mautner88400d32012-09-30 12:35:45 -0700968 * In multiuser systems shows only on the owning user's window.
Daniel Sandler7d276c32012-01-30 14:33:52 -0500969 * @hide
970 */
971 public static final int TYPE_DREAM = FIRST_SYSTEM_WINDOW+23;
972
973 /**
Jim Millere898ac52012-04-06 17:10:57 -0700974 * Window type: Navigation bar panel (when navigation bar is distinct from status bar)
Craig Mautner88400d32012-09-30 12:35:45 -0700975 * In multiuser systems shows on all users' windows.
Jim Millere898ac52012-04-06 17:10:57 -0700976 * @hide
977 */
978 public static final int TYPE_NAVIGATION_BAR_PANEL = FIRST_SYSTEM_WINDOW+24;
979
980 /**
Jeff Brownbd6e1502012-08-28 03:27:37 -0700981 * Window type: Display overlay window. Used to simulate secondary display devices.
Craig Mautner88400d32012-09-30 12:35:45 -0700982 * In multiuser systems shows on all users' windows.
Jeff Brownbd6e1502012-08-28 03:27:37 -0700983 * @hide
984 */
Mathew Inwooda570dee2018-08-17 14:56:00 +0100985 @UnsupportedAppUsage
Jeff Brownbd6e1502012-08-28 03:27:37 -0700986 public static final int TYPE_DISPLAY_OVERLAY = FIRST_SYSTEM_WINDOW+26;
987
988 /**
Svetoslav Ganov1cf70bb2012-08-06 10:53:34 -0700989 * Window type: Magnification overlay window. Used to highlight the magnified
990 * portion of a display when accessibility magnification is enabled.
Craig Mautner88400d32012-09-30 12:35:45 -0700991 * In multiuser systems shows on all users' windows.
Svetoslav Ganov1cf70bb2012-08-06 10:53:34 -0700992 * @hide
993 */
994 public static final int TYPE_MAGNIFICATION_OVERLAY = FIRST_SYSTEM_WINDOW+27;
995
996 /**
keunyounga446bf02013-06-21 19:07:57 -0700997 * Window type: Window for Presentation on top of private
998 * virtual display.
999 */
1000 public static final int TYPE_PRIVATE_PRESENTATION = FIRST_SYSTEM_WINDOW+30;
1001
1002 /**
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001003 * Window type: Windows in the voice interaction layer.
1004 * @hide
1005 */
1006 public static final int TYPE_VOICE_INTERACTION = FIRST_SYSTEM_WINDOW+31;
1007
1008 /**
Phil Weaver40ded282016-01-25 15:49:02 -08001009 * Window type: Windows that are overlaid <em>only</em> by a connected {@link
Svetoslav3a5c7212014-10-14 09:54:26 -07001010 * android.accessibilityservice.AccessibilityService} for interception of
1011 * user interactions without changing the windows an accessibility service
1012 * can introspect. In particular, an accessibility service can introspect
1013 * only windows that a sighted user can interact with which is they can touch
1014 * these windows or can type into these windows. For example, if there
1015 * is a full screen accessibility overlay that is touchable, the windows
Phil Weaver40ded282016-01-25 15:49:02 -08001016 * below it will be introspectable by an accessibility service even though
Svetoslav3a5c7212014-10-14 09:54:26 -07001017 * they are covered by a touchable window.
1018 */
1019 public static final int TYPE_ACCESSIBILITY_OVERLAY = FIRST_SYSTEM_WINDOW+32;
1020
1021 /**
Jorim Jaggi225d3b52015-04-01 11:18:57 -07001022 * Window type: Starting window for voice interaction layer.
1023 * @hide
1024 */
1025 public static final int TYPE_VOICE_INTERACTION_STARTING = FIRST_SYSTEM_WINDOW+33;
1026
1027 /**
Filip Gruszczynski466f3212015-09-21 17:57:57 -07001028 * Window for displaying a handle used for resizing docked stacks. This window is owned
1029 * by the system process.
1030 * @hide
1031 */
1032 public static final int TYPE_DOCK_DIVIDER = FIRST_SYSTEM_WINDOW+34;
1033
1034 /**
Jason Monk8f7f3182015-11-18 16:35:14 -05001035 * Window type: like {@link #TYPE_APPLICATION_ATTACHED_DIALOG}, but used
1036 * by Quick Settings Tiles.
1037 * @hide
1038 */
1039 public static final int TYPE_QS_DIALOG = FIRST_SYSTEM_WINDOW+35;
1040
1041 /**
Muyuan Li6ca619f2016-03-08 13:30:42 -08001042 * Window type: shares similar characteristics with {@link #TYPE_DREAM}. The layer is
Muyuan Li36ca72c2016-08-06 20:24:06 -07001043 * reserved for screenshot region selection. These windows must not take input focus.
Muyuan Li6ca619f2016-03-08 13:30:42 -08001044 * @hide
1045 */
1046 public static final int TYPE_SCREENSHOT = FIRST_SYSTEM_WINDOW + 36;
1047
1048 /**
Wale Ogunwale5b6714c2016-11-01 20:54:46 -07001049 * Window type: Window for Presentation on an external display.
1050 * @see android.app.Presentation
1051 * @hide
1052 */
1053 public static final int TYPE_PRESENTATION = FIRST_SYSTEM_WINDOW + 37;
1054
1055 /**
Wale Ogunwale5cd907d2017-01-26 14:14:08 -08001056 * Window type: Application overlay windows are displayed above all activity windows
1057 * (types between {@link #FIRST_APPLICATION_WINDOW} and {@link #LAST_APPLICATION_WINDOW})
1058 * but below critical system windows like the status bar or IME.
1059 * <p>
1060 * The system may change the position, size, or visibility of these windows at anytime
1061 * to reduce visual clutter to the user and also manage resources.
1062 * <p>
1063 * Requires {@link android.Manifest.permission#SYSTEM_ALERT_WINDOW} permission.
1064 * <p>
Wale Ogunwaled993a572017-02-05 13:52:09 -08001065 * The system will adjust the importance of processes with this window type to reduce the
1066 * chance of the low-memory-killer killing them.
1067 * <p>
1068 * In multi-user systems shows only on the owning user's screen.
Wale Ogunwale5cd907d2017-01-26 14:14:08 -08001069 */
1070 public static final int TYPE_APPLICATION_OVERLAY = FIRST_SYSTEM_WINDOW + 38;
1071
1072 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001073 * End of types of system windows.
1074 */
1075 public static final int LAST_SYSTEM_WINDOW = 2999;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001076
Wale Ogunwale5cd907d2017-01-26 14:14:08 -08001077 /**
Albert Chaulke4338f82017-04-19 15:54:08 -04001078 * @hide
1079 * Used internally when there is no suitable type available.
1080 */
1081 public static final int INVALID_WINDOW_TYPE = -1;
1082
1083 /**
Wale Ogunwale5cd907d2017-01-26 14:14:08 -08001084 * Return true if the window type is an alert window.
1085 *
1086 * @param type The window type.
1087 * @return If the window type is an alert window.
1088 * @hide
1089 */
1090 public static boolean isSystemAlertWindowType(int type) {
1091 switch (type) {
1092 case TYPE_PHONE:
1093 case TYPE_PRIORITY_PHONE:
1094 case TYPE_SYSTEM_ALERT:
1095 case TYPE_SYSTEM_ERROR:
1096 case TYPE_SYSTEM_OVERLAY:
1097 case TYPE_APPLICATION_OVERLAY:
1098 return true;
1099 }
1100 return false;
1101 }
1102
Mathias Agopiand2112302010-12-07 19:38:17 -08001103 /** @deprecated this is ignored, this value is set automatically when needed. */
1104 @Deprecated
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001105 public static final int MEMORY_TYPE_NORMAL = 0;
Mathias Agopiand2112302010-12-07 19:38:17 -08001106 /** @deprecated this is ignored, this value is set automatically when needed. */
Mathias Agopian317a6282009-08-13 17:29:02 -07001107 @Deprecated
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001108 public static final int MEMORY_TYPE_HARDWARE = 1;
Mathias Agopiand2112302010-12-07 19:38:17 -08001109 /** @deprecated this is ignored, this value is set automatically when needed. */
Mathias Agopian317a6282009-08-13 17:29:02 -07001110 @Deprecated
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001111 public static final int MEMORY_TYPE_GPU = 2;
Mathias Agopiand2112302010-12-07 19:38:17 -08001112 /** @deprecated this is ignored, this value is set automatically when needed. */
1113 @Deprecated
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001114 public static final int MEMORY_TYPE_PUSH_BUFFERS = 3;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001115
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001116 /**
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001117 * @deprecated this is ignored
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001118 */
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001119 @Deprecated
1120 public int memoryType;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001121
Mike Lockwoodef731622010-01-27 17:51:34 -05001122 /** Window flag: as long as this window is visible to the user, allow
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001123 * the lock screen to activate while the screen is on.
1124 * This can be used independently, or in combination with
Christopher Tate95f78502010-01-29 15:57:34 -08001125 * {@link #FLAG_KEEP_SCREEN_ON} and/or {@link #FLAG_SHOW_WHEN_LOCKED} */
Mike Lockwoodef731622010-01-27 17:51:34 -05001126 public static final int FLAG_ALLOW_LOCK_WHILE_SCREEN_ON = 0x00000001;
1127
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001128 /** Window flag: everything behind this window will be dimmed.
1129 * Use {@link #dimAmount} to control the amount of dim. */
1130 public static final int FLAG_DIM_BEHIND = 0x00000002;
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001131
1132 /** Window flag: blur everything behind this window.
1133 * @deprecated Blurring is no longer supported. */
1134 @Deprecated
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001135 public static final int FLAG_BLUR_BEHIND = 0x00000004;
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001136
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001137 /** Window flag: this window won't ever get key input focus, so the
1138 * user can not send key or other button events to it. Those will
1139 * instead go to whatever focusable window is behind it. This flag
1140 * will also enable {@link #FLAG_NOT_TOUCH_MODAL} whether or not that
1141 * is explicitly set.
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001142 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001143 * <p>Setting this flag also implies that the window will not need to
1144 * interact with
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001145 * a soft input method, so it will be Z-ordered and positioned
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001146 * independently of any active input method (typically this means it
1147 * gets Z-ordered on top of the input method, so it can use the full
1148 * screen for its content and cover the input method if needed. You
1149 * can use {@link #FLAG_ALT_FOCUSABLE_IM} to modify this behavior. */
1150 public static final int FLAG_NOT_FOCUSABLE = 0x00000008;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001151
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001152 /** Window flag: this window can never receive touch events. */
1153 public static final int FLAG_NOT_TOUCHABLE = 0x00000010;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001154
John Spurlock33291d82013-03-13 14:45:14 -04001155 /** Window flag: even when this window is focusable (its
1156 * {@link #FLAG_NOT_FOCUSABLE} is not set), allow any pointer events
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001157 * outside of the window to be sent to the windows behind it. Otherwise
1158 * it will consume all pointer events itself, regardless of whether they
1159 * are inside of the window. */
1160 public static final int FLAG_NOT_TOUCH_MODAL = 0x00000020;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001161
John Spurlock33291d82013-03-13 14:45:14 -04001162 /** Window flag: when set, if the device is asleep when the touch
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001163 * screen is pressed, you will receive this first touch event. Usually
1164 * the first touch event is consumed by the system since the user can
1165 * not see what they are pressing on.
Jeff Brown037c33e2014-04-09 00:31:55 -07001166 *
1167 * @deprecated This flag has no effect.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001168 */
Jeff Brown037c33e2014-04-09 00:31:55 -07001169 @Deprecated
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001170 public static final int FLAG_TOUCHABLE_WHEN_WAKING = 0x00000040;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001171
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001172 /** Window flag: as long as this window is visible to the user, keep
1173 * the device's screen turned on and bright. */
1174 public static final int FLAG_KEEP_SCREEN_ON = 0x00000080;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001175
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001176 /** Window flag: place the window within the entire screen, ignoring
John Spurlock33291d82013-03-13 14:45:14 -04001177 * decorations around the border (such as the status bar). The
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001178 * window must correctly position its contents to take the screen
1179 * decoration into account. This flag is normally set for you
Adrian Roosfa02da62018-01-15 16:01:18 +01001180 * by Window as described in {@link Window#setFlags}.
1181 *
1182 * <p>Note: on displays that have a {@link DisplayCutout}, the window may be placed
1183 * such that it avoids the {@link DisplayCutout} area if necessary according to the
1184 * {@link #layoutInDisplayCutoutMode}.
1185 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001186 public static final int FLAG_LAYOUT_IN_SCREEN = 0x00000100;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001187
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001188 /** Window flag: allow window to extend outside of the screen. */
1189 public static final int FLAG_LAYOUT_NO_LIMITS = 0x00000200;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001190
Dianne Hackborn1bf1af62013-02-25 16:48:53 -08001191 /**
John Spurlock33291d82013-03-13 14:45:14 -04001192 * Window flag: hide all screen decorations (such as the status bar) while
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001193 * this window is displayed. This allows the window to use the entire
1194 * display space for itself -- the status bar will be hidden when
Chet Haase45c89c22013-04-29 16:04:40 -07001195 * an app window with this flag set is on the top layer. A fullscreen window
1196 * will ignore a value of {@link #SOFT_INPUT_ADJUST_RESIZE} for the window's
1197 * {@link #softInputMode} field; the window will stay fullscreen
1198 * and will not resize.
Dianne Hackborn1bf1af62013-02-25 16:48:53 -08001199 *
1200 * <p>This flag can be controlled in your theme through the
1201 * {@link android.R.attr#windowFullscreen} attribute; this attribute
1202 * is automatically set for you in the standard fullscreen themes
1203 * such as {@link android.R.style#Theme_NoTitleBar_Fullscreen},
1204 * {@link android.R.style#Theme_Black_NoTitleBar_Fullscreen},
1205 * {@link android.R.style#Theme_Light_NoTitleBar_Fullscreen},
1206 * {@link android.R.style#Theme_Holo_NoActionBar_Fullscreen},
1207 * {@link android.R.style#Theme_Holo_Light_NoActionBar_Fullscreen},
1208 * {@link android.R.style#Theme_DeviceDefault_NoActionBar_Fullscreen}, and
1209 * {@link android.R.style#Theme_DeviceDefault_Light_NoActionBar_Fullscreen}.</p>
1210 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001211 public static final int FLAG_FULLSCREEN = 0x00000400;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001212
John Spurlock33291d82013-03-13 14:45:14 -04001213 /** Window flag: override {@link #FLAG_FULLSCREEN} and force the
1214 * screen decorations (such as the status bar) to be shown. */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001215 public static final int FLAG_FORCE_NOT_FULLSCREEN = 0x00000800;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001216
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001217 /** Window flag: turn on dithering when compositing this window to
Jeff Brown3cc321e2012-07-16 16:04:23 -07001218 * the screen.
1219 * @deprecated This flag is no longer used. */
1220 @Deprecated
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001221 public static final int FLAG_DITHER = 0x00001000;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001222
John Spurlock33291d82013-03-13 14:45:14 -04001223 /** Window flag: treat the content of the window as secure, preventing
Jeff Brownf0681b32012-10-23 17:35:57 -07001224 * it from appearing in screenshots or from being viewed on non-secure
1225 * displays.
1226 *
1227 * <p>See {@link android.view.Display#FLAG_SECURE} for more details about
1228 * secure surfaces and secure displays.
1229 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001230 public static final int FLAG_SECURE = 0x00002000;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001231
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001232 /** Window flag: a special mode where the layout parameters are used
1233 * to perform scaling of the surface when it is composited to the
1234 * screen. */
1235 public static final int FLAG_SCALED = 0x00004000;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001236
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001237 /** Window flag: intended for windows that will often be used when the user is
1238 * holding the screen against their face, it will aggressively filter the event
1239 * stream to prevent unintended presses in this situation that may not be
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001240 * desired for a particular window, when such an event stream is detected, the
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001241 * application will receive a CANCEL motion event to indicate this so applications
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001242 * can handle this accordingly by taking no action on the event
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001243 * until the finger is released. */
1244 public static final int FLAG_IGNORE_CHEEK_PRESSES = 0x00008000;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001245
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001246 /** Window flag: a special option only for use in combination with
1247 * {@link #FLAG_LAYOUT_IN_SCREEN}. When requesting layout in the
1248 * screen your window may appear on top of or behind screen decorations
1249 * such as the status bar. By also including this flag, the window
1250 * manager will report the inset rectangle needed to ensure your
1251 * content is not covered by screen decorations. This flag is normally
1252 * set for you by Window as described in {@link Window#setFlags}.*/
1253 public static final int FLAG_LAYOUT_INSET_DECOR = 0x00010000;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001254
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001255 /** Window flag: invert the state of {@link #FLAG_NOT_FOCUSABLE} with
1256 * respect to how this window interacts with the current method. That
1257 * is, if FLAG_NOT_FOCUSABLE is set and this flag is set, then the
1258 * window will behave as if it needs to interact with the input method
1259 * and thus be placed behind/away from it; if FLAG_NOT_FOCUSABLE is
1260 * not set and this flag is set, then the window will behave as if it
1261 * doesn't need to interact with the input method and can be placed
1262 * to use more space and cover the input method.
1263 */
1264 public static final int FLAG_ALT_FOCUSABLE_IM = 0x00020000;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001265
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001266 /** Window flag: if you have set {@link #FLAG_NOT_TOUCH_MODAL}, you
1267 * can set this flag to receive a single special MotionEvent with
1268 * the action
1269 * {@link MotionEvent#ACTION_OUTSIDE MotionEvent.ACTION_OUTSIDE} for
1270 * touches that occur outside of your window. Note that you will not
1271 * receive the full down/move/up gesture, only the location of the
1272 * first down as an ACTION_OUTSIDE.
1273 */
1274 public static final int FLAG_WATCH_OUTSIDE_TOUCH = 0x00040000;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001275
Suchi Amalapurapud1a93372009-05-14 17:54:31 -07001276 /** Window flag: special flag to let windows be shown when the screen
1277 * is locked. This will let application windows take precedence over
1278 * key guard or any other lock screens. Can be used with
1279 * {@link #FLAG_KEEP_SCREEN_ON} to turn screen on and display windows
Dianne Hackborn9bfb7072009-09-22 11:37:40 -07001280 * directly before showing the key guard window. Can be used with
1281 * {@link #FLAG_DISMISS_KEYGUARD} to automatically fully dismisss
1282 * non-secure keyguards. This flag only applies to the top-most
1283 * full-screen window.
chaviw59b98852017-06-13 12:05:44 -07001284 * @deprecated Use {@link android.R.attr#showWhenLocked} or
1285 * {@link android.app.Activity#setShowWhenLocked(boolean)} instead to prevent an
1286 * unintentional double life-cycle event.
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001287 */
chaviw59b98852017-06-13 12:05:44 -07001288 @Deprecated
Suchi Amalapurapud1a93372009-05-14 17:54:31 -07001289 public static final int FLAG_SHOW_WHEN_LOCKED = 0x00080000;
1290
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001291 /** Window flag: ask that the system wallpaper be shown behind
1292 * your window. The window surface must be translucent to be able
1293 * to actually see the wallpaper behind it; this flag just ensures
1294 * that the wallpaper surface will be there if this window actually
1295 * has translucent regions.
Dianne Hackborn1bf1af62013-02-25 16:48:53 -08001296 *
1297 * <p>This flag can be controlled in your theme through the
1298 * {@link android.R.attr#windowShowWallpaper} attribute; this attribute
1299 * is automatically set for you in the standard wallpaper themes
1300 * such as {@link android.R.style#Theme_Wallpaper},
1301 * {@link android.R.style#Theme_Wallpaper_NoTitleBar},
1302 * {@link android.R.style#Theme_Wallpaper_NoTitleBar_Fullscreen},
1303 * {@link android.R.style#Theme_Holo_Wallpaper},
1304 * {@link android.R.style#Theme_Holo_Wallpaper_NoTitleBar},
1305 * {@link android.R.style#Theme_DeviceDefault_Wallpaper}, and
1306 * {@link android.R.style#Theme_DeviceDefault_Wallpaper_NoTitleBar}.</p>
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001307 */
1308 public static final int FLAG_SHOW_WALLPAPER = 0x00100000;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001309
Dianne Hackborn93e462b2009-09-15 22:50:40 -07001310 /** Window flag: when set as a window is being added or made
1311 * visible, once the window has been shown then the system will
1312 * poke the power manager's user activity (as if the user had woken
chaviw59b98852017-06-13 12:05:44 -07001313 * up the device) to turn the screen on.
1314 * @deprecated Use {@link android.R.attr#turnScreenOn} or
1315 * {@link android.app.Activity#setTurnScreenOn(boolean)} instead to prevent an
1316 * unintentional double life-cycle event.
1317 */
1318 @Deprecated
Dianne Hackborn93e462b2009-09-15 22:50:40 -07001319 public static final int FLAG_TURN_SCREEN_ON = 0x00200000;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001320
Jeff Sharkey67f9d502017-08-05 13:49:13 -06001321 /**
1322 * Window flag: when set the window will cause the keyguard to be
1323 * dismissed, only if it is not a secure lock keyguard. Because such a
1324 * keyguard is not needed for security, it will never re-appear if the
1325 * user navigates to another window (in contrast to
1326 * {@link #FLAG_SHOW_WHEN_LOCKED}, which will only temporarily hide both
1327 * secure and non-secure keyguards but ensure they reappear when the
1328 * user moves to another UI that doesn't hide them). If the keyguard is
1329 * currently active and is secure (requires an unlock credential) than
1330 * the user will still need to confirm it before seeing this window,
1331 * unless {@link #FLAG_SHOW_WHEN_LOCKED} has also been set.
1332 *
1333 * @deprecated Use {@link #FLAG_SHOW_WHEN_LOCKED} or
1334 * {@link KeyguardManager#requestDismissKeyguard} instead.
1335 * Since keyguard was dismissed all the time as long as an
1336 * activity with this flag on its window was focused,
1337 * keyguard couldn't guard against unintentional touches on
1338 * the screen, which isn't desired.
Daniel Sandlerae069f72010-06-17 21:56:26 -04001339 */
Jorim Jaggi07961872016-11-23 11:28:57 +01001340 @Deprecated
Dianne Hackborn9bfb7072009-09-22 11:37:40 -07001341 public static final int FLAG_DISMISS_KEYGUARD = 0x00400000;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001342
Jeff Brown01ce2e92010-09-26 22:20:12 -07001343 /** Window flag: when set the window will accept for touch events
1344 * outside of its bounds to be sent to other windows that also
1345 * support split touch. When this flag is not set, the first pointer
1346 * that goes down determines the window to which all subsequent touches
1347 * go until all pointers go up. When this flag is set, each pointer
1348 * (not necessarily the first) that goes down determines the window
1349 * to which all subsequent touches of that pointer will go until that
1350 * pointer goes up thereby enabling touches with multiple pointers
1351 * to be split across multiple windows.
Dianne Hackbornd9b3b7e2010-11-16 18:22:49 -08001352 */
Jeff Brown01ce2e92010-09-26 22:20:12 -07001353 public static final int FLAG_SPLIT_TOUCH = 0x00800000;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001354
Dianne Hackbornd9b3b7e2010-11-16 18:22:49 -08001355 /**
Romain Guy72f0a272011-01-09 16:01:46 -08001356 * <p>Indicates whether this window should be hardware accelerated.
1357 * Requesting hardware acceleration does not guarantee it will happen.</p>
Dianne Hackbornc652de82013-02-15 16:32:56 -08001358 *
Romain Guy72f0a272011-01-09 16:01:46 -08001359 * <p>This flag can be controlled programmatically <em>only</em> to enable
1360 * hardware acceleration. To enable hardware acceleration for a given
1361 * window programmatically, do the following:</p>
Dianne Hackbornc652de82013-02-15 16:32:56 -08001362 *
Romain Guy72f0a272011-01-09 16:01:46 -08001363 * <pre>
1364 * Window w = activity.getWindow(); // in Activity's onCreate() for instance
1365 * w.setFlags(WindowManager.LayoutParams.FLAG_HARDWARE_ACCELERATED,
1366 * WindowManager.LayoutParams.FLAG_HARDWARE_ACCELERATED);
1367 * </pre>
Dianne Hackbornc652de82013-02-15 16:32:56 -08001368 *
Romain Guy72f0a272011-01-09 16:01:46 -08001369 * <p>It is important to remember that this flag <strong>must</strong>
1370 * be set before setting the content view of your activity or dialog.</p>
Dianne Hackbornc652de82013-02-15 16:32:56 -08001371 *
Romain Guy72f0a272011-01-09 16:01:46 -08001372 * <p>This flag cannot be used to disable hardware acceleration after it
1373 * was enabled in your manifest using
1374 * {@link android.R.attr#hardwareAccelerated}. If you need to selectively
1375 * and programmatically disable hardware acceleration (for automated testing
1376 * for instance), make sure it is turned off in your manifest and enable it
1377 * on your activity or dialog when you need it instead, using the method
1378 * described above.</p>
Dianne Hackbornc652de82013-02-15 16:32:56 -08001379 *
Romain Guy72f0a272011-01-09 16:01:46 -08001380 * <p>This flag is automatically set by the system if the
1381 * {@link android.R.attr#hardwareAccelerated android:hardwareAccelerated}
1382 * XML attribute is set to true on an activity or on the application.</p>
Dianne Hackbornd9b3b7e2010-11-16 18:22:49 -08001383 */
1384 public static final int FLAG_HARDWARE_ACCELERATED = 0x01000000;
Daniel Sandler611fae42010-06-17 10:45:00 -04001385
Dianne Hackborn1bf1af62013-02-25 16:48:53 -08001386 /**
1387 * Window flag: allow window contents to extend in to the screen's
Dianne Hackbornc652de82013-02-15 16:32:56 -08001388 * overscan area, if there is one. The window should still correctly
1389 * position its contents to take the overscan area into account.
Dianne Hackborn1bf1af62013-02-25 16:48:53 -08001390 *
1391 * <p>This flag can be controlled in your theme through the
1392 * {@link android.R.attr#windowOverscan} attribute; this attribute
1393 * is automatically set for you in the standard overscan themes
Ying Wang4e0eb222013-04-18 20:39:48 -07001394 * such as
Dianne Hackborn1bf1af62013-02-25 16:48:53 -08001395 * {@link android.R.style#Theme_Holo_NoActionBar_Overscan},
1396 * {@link android.R.style#Theme_Holo_Light_NoActionBar_Overscan},
1397 * {@link android.R.style#Theme_DeviceDefault_NoActionBar_Overscan}, and
1398 * {@link android.R.style#Theme_DeviceDefault_Light_NoActionBar_Overscan}.</p>
1399 *
1400 * <p>When this flag is enabled for a window, its normal content may be obscured
1401 * to some degree by the overscan region of the display. To ensure key parts of
1402 * that content are visible to the user, you can use
1403 * {@link View#setFitsSystemWindows(boolean) View.setFitsSystemWindows(boolean)}
1404 * to set the point in the view hierarchy where the appropriate offsets should
1405 * be applied. (This can be done either by directly calling this function, using
1406 * the {@link android.R.attr#fitsSystemWindows} attribute in your view hierarchy,
1407 * or implementing you own {@link View#fitSystemWindows(android.graphics.Rect)
1408 * View.fitSystemWindows(Rect)} method).</p>
1409 *
1410 * <p>This mechanism for positioning content elements is identical to its equivalent
1411 * use with layout and {@link View#setSystemUiVisibility(int)
1412 * View.setSystemUiVisibility(int)}; here is an example layout that will correctly
1413 * position its UI elements with this overscan flag is set:</p>
1414 *
1415 * {@sample development/samples/ApiDemos/res/layout/overscan_activity.xml complete}
Dianne Hackbornc652de82013-02-15 16:32:56 -08001416 */
1417 public static final int FLAG_LAYOUT_IN_OVERSCAN = 0x02000000;
1418
John Spurlockbd957402013-10-03 11:38:39 -04001419 /**
1420 * Window flag: request a translucent status bar with minimal system-provided
1421 * background protection.
1422 *
1423 * <p>This flag can be controlled in your theme through the
1424 * {@link android.R.attr#windowTranslucentStatus} attribute; this attribute
1425 * is automatically set for you in the standard translucent decor themes
1426 * such as
1427 * {@link android.R.style#Theme_Holo_NoActionBar_TranslucentDecor},
1428 * {@link android.R.style#Theme_Holo_Light_NoActionBar_TranslucentDecor},
1429 * {@link android.R.style#Theme_DeviceDefault_NoActionBar_TranslucentDecor}, and
1430 * {@link android.R.style#Theme_DeviceDefault_Light_NoActionBar_TranslucentDecor}.</p>
1431 *
1432 * <p>When this flag is enabled for a window, it automatically sets
1433 * the system UI visibility flags {@link View#SYSTEM_UI_FLAG_LAYOUT_STABLE} and
1434 * {@link View#SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN}.</p>
1435 */
1436 public static final int FLAG_TRANSLUCENT_STATUS = 0x04000000;
1437
1438 /**
1439 * Window flag: request a translucent navigation bar with minimal system-provided
1440 * background protection.
1441 *
1442 * <p>This flag can be controlled in your theme through the
1443 * {@link android.R.attr#windowTranslucentNavigation} attribute; this attribute
1444 * is automatically set for you in the standard translucent decor themes
1445 * such as
1446 * {@link android.R.style#Theme_Holo_NoActionBar_TranslucentDecor},
1447 * {@link android.R.style#Theme_Holo_Light_NoActionBar_TranslucentDecor},
1448 * {@link android.R.style#Theme_DeviceDefault_NoActionBar_TranslucentDecor}, and
1449 * {@link android.R.style#Theme_DeviceDefault_Light_NoActionBar_TranslucentDecor}.</p>
1450 *
1451 * <p>When this flag is enabled for a window, it automatically sets
1452 * the system UI visibility flags {@link View#SYSTEM_UI_FLAG_LAYOUT_STABLE} and
1453 * {@link View#SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION}.</p>
1454 */
1455 public static final int FLAG_TRANSLUCENT_NAVIGATION = 0x08000000;
1456
Adam Lesinski6a591f52013-10-01 18:11:17 -07001457 /**
1458 * Flag for a window in local focus mode.
1459 * Window in local focus mode can control focus independent of window manager using
1460 * {@link Window#setLocalFocus(boolean, boolean)}.
1461 * Usually window in this mode will not get touch/key events from window manager, but will
1462 * get events only via local injection using {@link Window#injectInputEvent(InputEvent)}.
1463 */
1464 public static final int FLAG_LOCAL_FOCUS_MODE = 0x10000000;
1465
Jeff Brown98db5fa2011-06-08 15:37:10 -07001466 /** Window flag: Enable touches to slide out of a window into neighboring
1467 * windows in mid-gesture instead of being captured for the duration of
1468 * the gesture.
1469 *
1470 * This flag changes the behavior of touch focus for this window only.
1471 * Touches can slide out of the window but they cannot necessarily slide
1472 * back in (unless the other window with touch focus permits it).
1473 *
1474 * {@hide}
1475 */
Mathew Inwooda570dee2018-08-17 14:56:00 +01001476 @UnsupportedAppUsage
Adam Lesinski6a591f52013-10-01 18:11:17 -07001477 public static final int FLAG_SLIPPERY = 0x20000000;
Jeff Brown98db5fa2011-06-08 15:37:10 -07001478
Daniel Sandlere02d8082010-10-08 15:13:22 -04001479 /**
Wale Ogunwale393b1c12014-10-18 16:22:01 -07001480 * Window flag: When requesting layout with an attached window, the attached window may
1481 * overlap with the screen decorations of the parent window such as the navigation bar. By
1482 * including this flag, the window manager will layout the attached window within the decor
1483 * frame of the parent window such that it doesn't overlap with screen decorations.
Daniel Sandlere02d8082010-10-08 15:13:22 -04001484 */
Wale Ogunwale393b1c12014-10-18 16:22:01 -07001485 public static final int FLAG_LAYOUT_ATTACHED_IN_DECOR = 0x40000000;
Daniel Sandlere02d8082010-10-08 15:13:22 -04001486
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001487 /**
Adrian Roos217ccd22014-05-09 14:29:04 +02001488 * Flag indicating that this Window is responsible for drawing the background for the
1489 * system bars. If set, the system bars are drawn with a transparent background and the
1490 * corresponding areas in this window are filled with the colors specified in
1491 * {@link Window#getStatusBarColor()} and {@link Window#getNavigationBarColor()}.
1492 */
1493 public static final int FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS = 0x80000000;
1494
1495 /**
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001496 * Various behavioral options/flags. Default is none.
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001497 *
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001498 * @see #FLAG_ALLOW_LOCK_WHILE_SCREEN_ON
1499 * @see #FLAG_DIM_BEHIND
1500 * @see #FLAG_NOT_FOCUSABLE
1501 * @see #FLAG_NOT_TOUCHABLE
1502 * @see #FLAG_NOT_TOUCH_MODAL
1503 * @see #FLAG_TOUCHABLE_WHEN_WAKING
1504 * @see #FLAG_KEEP_SCREEN_ON
1505 * @see #FLAG_LAYOUT_IN_SCREEN
1506 * @see #FLAG_LAYOUT_NO_LIMITS
1507 * @see #FLAG_FULLSCREEN
1508 * @see #FLAG_FORCE_NOT_FULLSCREEN
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001509 * @see #FLAG_SECURE
1510 * @see #FLAG_SCALED
1511 * @see #FLAG_IGNORE_CHEEK_PRESSES
1512 * @see #FLAG_LAYOUT_INSET_DECOR
1513 * @see #FLAG_ALT_FOCUSABLE_IM
1514 * @see #FLAG_WATCH_OUTSIDE_TOUCH
1515 * @see #FLAG_SHOW_WHEN_LOCKED
1516 * @see #FLAG_SHOW_WALLPAPER
1517 * @see #FLAG_TURN_SCREEN_ON
1518 * @see #FLAG_DISMISS_KEYGUARD
1519 * @see #FLAG_SPLIT_TOUCH
1520 * @see #FLAG_HARDWARE_ACCELERATED
keunyoung30f420f2013-08-02 14:23:10 -07001521 * @see #FLAG_LOCAL_FOCUS_MODE
Adrian Roos217ccd22014-05-09 14:29:04 +02001522 * @see #FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001523 */
1524 @ViewDebug.ExportedProperty(flagMapping = {
1525 @ViewDebug.FlagToString(mask = FLAG_ALLOW_LOCK_WHILE_SCREEN_ON, equals = FLAG_ALLOW_LOCK_WHILE_SCREEN_ON,
Jorim Jaggi484851b2017-09-22 16:03:27 +02001526 name = "ALLOW_LOCK_WHILE_SCREEN_ON"),
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001527 @ViewDebug.FlagToString(mask = FLAG_DIM_BEHIND, equals = FLAG_DIM_BEHIND,
Jorim Jaggi484851b2017-09-22 16:03:27 +02001528 name = "DIM_BEHIND"),
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001529 @ViewDebug.FlagToString(mask = FLAG_BLUR_BEHIND, equals = FLAG_BLUR_BEHIND,
Jorim Jaggi484851b2017-09-22 16:03:27 +02001530 name = "BLUR_BEHIND"),
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001531 @ViewDebug.FlagToString(mask = FLAG_NOT_FOCUSABLE, equals = FLAG_NOT_FOCUSABLE,
Jorim Jaggi484851b2017-09-22 16:03:27 +02001532 name = "NOT_FOCUSABLE"),
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001533 @ViewDebug.FlagToString(mask = FLAG_NOT_TOUCHABLE, equals = FLAG_NOT_TOUCHABLE,
Jorim Jaggi484851b2017-09-22 16:03:27 +02001534 name = "NOT_TOUCHABLE"),
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001535 @ViewDebug.FlagToString(mask = FLAG_NOT_TOUCH_MODAL, equals = FLAG_NOT_TOUCH_MODAL,
Jorim Jaggi484851b2017-09-22 16:03:27 +02001536 name = "NOT_TOUCH_MODAL"),
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001537 @ViewDebug.FlagToString(mask = FLAG_TOUCHABLE_WHEN_WAKING, equals = FLAG_TOUCHABLE_WHEN_WAKING,
Jorim Jaggi484851b2017-09-22 16:03:27 +02001538 name = "TOUCHABLE_WHEN_WAKING"),
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001539 @ViewDebug.FlagToString(mask = FLAG_KEEP_SCREEN_ON, equals = FLAG_KEEP_SCREEN_ON,
Jorim Jaggi484851b2017-09-22 16:03:27 +02001540 name = "KEEP_SCREEN_ON"),
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001541 @ViewDebug.FlagToString(mask = FLAG_LAYOUT_IN_SCREEN, equals = FLAG_LAYOUT_IN_SCREEN,
Jorim Jaggi484851b2017-09-22 16:03:27 +02001542 name = "LAYOUT_IN_SCREEN"),
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001543 @ViewDebug.FlagToString(mask = FLAG_LAYOUT_NO_LIMITS, equals = FLAG_LAYOUT_NO_LIMITS,
Jorim Jaggi484851b2017-09-22 16:03:27 +02001544 name = "LAYOUT_NO_LIMITS"),
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001545 @ViewDebug.FlagToString(mask = FLAG_FULLSCREEN, equals = FLAG_FULLSCREEN,
Jorim Jaggi484851b2017-09-22 16:03:27 +02001546 name = "FULLSCREEN"),
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001547 @ViewDebug.FlagToString(mask = FLAG_FORCE_NOT_FULLSCREEN, equals = FLAG_FORCE_NOT_FULLSCREEN,
Jorim Jaggi484851b2017-09-22 16:03:27 +02001548 name = "FORCE_NOT_FULLSCREEN"),
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001549 @ViewDebug.FlagToString(mask = FLAG_DITHER, equals = FLAG_DITHER,
Jorim Jaggi484851b2017-09-22 16:03:27 +02001550 name = "DITHER"),
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001551 @ViewDebug.FlagToString(mask = FLAG_SECURE, equals = FLAG_SECURE,
Jorim Jaggi484851b2017-09-22 16:03:27 +02001552 name = "SECURE"),
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001553 @ViewDebug.FlagToString(mask = FLAG_SCALED, equals = FLAG_SCALED,
Jorim Jaggi484851b2017-09-22 16:03:27 +02001554 name = "SCALED"),
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001555 @ViewDebug.FlagToString(mask = FLAG_IGNORE_CHEEK_PRESSES, equals = FLAG_IGNORE_CHEEK_PRESSES,
Jorim Jaggi484851b2017-09-22 16:03:27 +02001556 name = "IGNORE_CHEEK_PRESSES"),
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001557 @ViewDebug.FlagToString(mask = FLAG_LAYOUT_INSET_DECOR, equals = FLAG_LAYOUT_INSET_DECOR,
Jorim Jaggi484851b2017-09-22 16:03:27 +02001558 name = "LAYOUT_INSET_DECOR"),
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001559 @ViewDebug.FlagToString(mask = FLAG_ALT_FOCUSABLE_IM, equals = FLAG_ALT_FOCUSABLE_IM,
Jorim Jaggi484851b2017-09-22 16:03:27 +02001560 name = "ALT_FOCUSABLE_IM"),
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001561 @ViewDebug.FlagToString(mask = FLAG_WATCH_OUTSIDE_TOUCH, equals = FLAG_WATCH_OUTSIDE_TOUCH,
Jorim Jaggi484851b2017-09-22 16:03:27 +02001562 name = "WATCH_OUTSIDE_TOUCH"),
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001563 @ViewDebug.FlagToString(mask = FLAG_SHOW_WHEN_LOCKED, equals = FLAG_SHOW_WHEN_LOCKED,
Jorim Jaggi484851b2017-09-22 16:03:27 +02001564 name = "SHOW_WHEN_LOCKED"),
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001565 @ViewDebug.FlagToString(mask = FLAG_SHOW_WALLPAPER, equals = FLAG_SHOW_WALLPAPER,
Jorim Jaggi484851b2017-09-22 16:03:27 +02001566 name = "SHOW_WALLPAPER"),
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001567 @ViewDebug.FlagToString(mask = FLAG_TURN_SCREEN_ON, equals = FLAG_TURN_SCREEN_ON,
Jorim Jaggi484851b2017-09-22 16:03:27 +02001568 name = "TURN_SCREEN_ON"),
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001569 @ViewDebug.FlagToString(mask = FLAG_DISMISS_KEYGUARD, equals = FLAG_DISMISS_KEYGUARD,
Jorim Jaggi484851b2017-09-22 16:03:27 +02001570 name = "DISMISS_KEYGUARD"),
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001571 @ViewDebug.FlagToString(mask = FLAG_SPLIT_TOUCH, equals = FLAG_SPLIT_TOUCH,
Jorim Jaggi484851b2017-09-22 16:03:27 +02001572 name = "SPLIT_TOUCH"),
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001573 @ViewDebug.FlagToString(mask = FLAG_HARDWARE_ACCELERATED, equals = FLAG_HARDWARE_ACCELERATED,
Jorim Jaggi484851b2017-09-22 16:03:27 +02001574 name = "HARDWARE_ACCELERATED"),
1575 @ViewDebug.FlagToString(mask = FLAG_LAYOUT_IN_OVERSCAN, equals = FLAG_LAYOUT_IN_OVERSCAN,
1576 name = "LOCAL_FOCUS_MODE"),
John Spurlockbd957402013-10-03 11:38:39 -04001577 @ViewDebug.FlagToString(mask = FLAG_TRANSLUCENT_STATUS, equals = FLAG_TRANSLUCENT_STATUS,
Jorim Jaggi484851b2017-09-22 16:03:27 +02001578 name = "TRANSLUCENT_STATUS"),
John Spurlockbd957402013-10-03 11:38:39 -04001579 @ViewDebug.FlagToString(mask = FLAG_TRANSLUCENT_NAVIGATION, equals = FLAG_TRANSLUCENT_NAVIGATION,
Jorim Jaggi484851b2017-09-22 16:03:27 +02001580 name = "TRANSLUCENT_NAVIGATION"),
1581 @ViewDebug.FlagToString(mask = FLAG_LOCAL_FOCUS_MODE, equals = FLAG_LOCAL_FOCUS_MODE,
1582 name = "LOCAL_FOCUS_MODE"),
1583 @ViewDebug.FlagToString(mask = FLAG_SLIPPERY, equals = FLAG_SLIPPERY,
1584 name = "FLAG_SLIPPERY"),
1585 @ViewDebug.FlagToString(mask = FLAG_LAYOUT_ATTACHED_IN_DECOR, equals = FLAG_LAYOUT_ATTACHED_IN_DECOR,
1586 name = "FLAG_LAYOUT_ATTACHED_IN_DECOR"),
Adrian Roos217ccd22014-05-09 14:29:04 +02001587 @ViewDebug.FlagToString(mask = FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS, equals = FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS,
Jorim Jaggi484851b2017-09-22 16:03:27 +02001588 name = "DRAWS_SYSTEM_BAR_BACKGROUNDS")
Jon Miranda4597e982014-07-29 07:25:49 -07001589 }, formatToHexString = true)
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001590 public int flags;
1591
1592 /**
John Reck61375a82014-09-18 19:27:48 +00001593 * If the window has requested hardware acceleration, but this is not
1594 * allowed in the process it is in, then still render it as if it is
1595 * hardware accelerated. This is used for the starting preview windows
1596 * in the system process, which don't need to have the overhead of
1597 * hardware acceleration (they are just a static rendering), but should
1598 * be rendered as such to match the actual window of the app even if it
1599 * is hardware accelerated.
1600 * Even if the window isn't hardware accelerated, still do its rendering
1601 * as if it was.
1602 * Like {@link #FLAG_HARDWARE_ACCELERATED} except for trusted system windows
1603 * that need hardware acceleration (e.g. LockScreen), where hardware acceleration
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001604 * is generally disabled. This flag must be specified in addition to
John Reck61375a82014-09-18 19:27:48 +00001605 * {@link #FLAG_HARDWARE_ACCELERATED} to enable hardware acceleration for system
1606 * windows.
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001607 *
John Reck61375a82014-09-18 19:27:48 +00001608 * @hide
1609 */
1610 public static final int PRIVATE_FLAG_FAKE_HARDWARE_ACCELERATED = 0x00000001;
1611
1612 /**
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001613 * In the system process, we globally do not use hardware acceleration
Ken Wakasaf76a50c2012-03-09 19:56:35 +09001614 * because there are many threads doing UI there and they conflict.
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001615 * If certain parts of the UI that really do want to use hardware
1616 * acceleration, this flag can be set to force it. This is basically
1617 * for the lock screen. Anyone else using it, you are probably wrong.
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001618 *
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001619 * @hide
1620 */
1621 public static final int PRIVATE_FLAG_FORCE_HARDWARE_ACCELERATED = 0x00000002;
1622
1623 /**
Chet Haasea8e5a2b2011-10-28 13:18:16 -07001624 * By default, wallpapers are sent new offsets when the wallpaper is scrolled. Wallpapers
Ken Wakasaf76a50c2012-03-09 19:56:35 +09001625 * may elect to skip these notifications if they are not doing anything productive with
Chet Haasea8e5a2b2011-10-28 13:18:16 -07001626 * them (they do not affect the wallpaper scrolling operation) by calling
1627 * {@link
1628 * android.service.wallpaper.WallpaperService.Engine#setOffsetNotificationsEnabled(boolean)}.
1629 *
1630 * @hide
1631 */
1632 public static final int PRIVATE_FLAG_WANTS_OFFSET_NOTIFICATIONS = 0x00000004;
1633
Craig Mautner88400d32012-09-30 12:35:45 -07001634 /** In a multiuser system if this flag is set and the owner is a system process then this
1635 * window will appear on all user screens. This overrides the default behavior of window
1636 * types that normally only appear on the owning user's screen. Refer to each window type
1637 * to determine its default behavior.
1638 *
1639 * {@hide} */
Mathew Inwooda570dee2018-08-17 14:56:00 +01001640 @UnsupportedAppUsage
Craig Mautner88400d32012-09-30 12:35:45 -07001641 public static final int PRIVATE_FLAG_SHOW_FOR_ALL_USERS = 0x00000010;
1642
Dianne Hackborn73ab6a42011-12-13 11:16:23 -08001643 /**
Dianne Hackborn1c5383c2013-04-15 15:07:21 -07001644 * Never animate position changes of the window.
1645 *
Robert Carrb48380a2017-04-04 14:56:37 -07001646 * {@hide}
1647 */
1648 @TestApi
Dianne Hackborn1c5383c2013-04-15 15:07:21 -07001649 public static final int PRIVATE_FLAG_NO_MOVE_ANIMATION = 0x00000040;
1650
Adam Lesinski6a591f52013-10-01 18:11:17 -07001651 /** Window flag: special flag to limit the size of the window to be
1652 * original size ([320x480] x density). Used to create window for applications
1653 * running under compatibility mode.
1654 *
1655 * {@hide} */
1656 public static final int PRIVATE_FLAG_COMPATIBLE_WINDOW = 0x00000080;
1657
1658 /** Window flag: a special option intended for system dialogs. When
1659 * this flag is set, the window will demand focus unconditionally when
1660 * it is created.
1661 * {@hide} */
1662 public static final int PRIVATE_FLAG_SYSTEM_ERROR = 0x00000100;
1663
John Spurlock3f7cd512013-10-07 12:25:09 -04001664 /** Window flag: maintain the previous translucent decor state when this window
John Spurlockbd957402013-10-03 11:38:39 -04001665 * becomes top-most.
1666 * {@hide} */
1667 public static final int PRIVATE_FLAG_INHERIT_TRANSLUCENT_DECOR = 0x00000200;
1668
Dianne Hackborn1c5383c2013-04-15 15:07:21 -07001669 /**
Jorim Jaggi380ecb82014-03-14 17:25:20 +01001670 * Flag whether the current window is a keyguard window, meaning that it will hide all other
1671 * windows behind it except for windows with flag {@link #FLAG_SHOW_WHEN_LOCKED} set.
1672 * Further, this can only be set by {@link LayoutParams#TYPE_STATUS_BAR}.
1673 * {@hide}
1674 */
1675 public static final int PRIVATE_FLAG_KEYGUARD = 0x00000400;
1676
1677 /**
Filip Gruszczynskib8c06942014-12-04 15:02:18 -08001678 * Flag that prevents the wallpaper behind the current window from receiving touch events.
1679 *
1680 * {@hide}
1681 */
1682 public static final int PRIVATE_FLAG_DISABLE_WALLPAPER_TOUCH_EVENTS = 0x00000800;
1683
1684 /**
Selim Cinek4a4a2bddc2015-05-07 12:50:19 -07001685 * Flag to force the status bar window to be visible all the time. If the bar is hidden when
1686 * this flag is set it will be shown again and the bar will have a transparent background.
1687 * This can only be set by {@link LayoutParams#TYPE_STATUS_BAR}.
1688 *
1689 * {@hide}
1690 */
1691 public static final int PRIVATE_FLAG_FORCE_STATUS_BAR_VISIBLE_TRANSPARENT = 0x00001000;
1692
1693 /**
Robert Carr64aadd02015-11-06 13:54:20 -08001694 * Flag indicating that the x, y, width, and height members should be
Filip Gruszczynski1a4dfe52015-11-15 10:58:57 -08001695 * ignored (and thus their previous value preserved). For example
Robert Carr64aadd02015-11-06 13:54:20 -08001696 * because they are being managed externally through repositionChild.
1697 *
1698 * {@hide}
1699 */
1700 public static final int PRIVATE_FLAG_PRESERVE_GEOMETRY = 0x00002000;
1701
Filip Gruszczynski1a4dfe52015-11-15 10:58:57 -08001702 /**
1703 * Flag that will make window ignore app visibility and instead depend purely on the decor
1704 * view visibility for determining window visibility. This is used by recents to keep
1705 * drawing after it launches an app.
1706 * @hide
1707 */
1708 public static final int PRIVATE_FLAG_FORCE_DECOR_VIEW_VISIBILITY = 0x00004000;
1709
Robert Carra1eb4392015-12-10 12:43:51 -08001710 /**
1711 * Flag to indicate that this window is not expected to be replaced across
1712 * configuration change triggered activity relaunches. In general the WindowManager
1713 * expects Windows to be replaced after relaunch, and thus it will preserve their surfaces
1714 * until the replacement is ready to show in order to prevent visual glitch. However
1715 * some windows, such as PopupWindows expect to be cleared across configuration change,
1716 * and thus should hint to the WindowManager that it should not wait for a replacement.
1717 * @hide
1718 */
1719 public static final int PRIVATE_FLAG_WILL_NOT_REPLACE_ON_RELAUNCH = 0x00008000;
Robert Carr64aadd02015-11-06 13:54:20 -08001720
1721 /**
Wale Ogunwale8216eb22015-12-18 10:42:42 -08001722 * Flag to indicate that this child window should always be laid-out in the parent
1723 * frame regardless of the current windowing mode configuration.
1724 * @hide
1725 */
1726 public static final int PRIVATE_FLAG_LAYOUT_CHILD_WINDOW_IN_PARENT_FRAME = 0x00010000;
1727
1728 /**
Jorim Jaggi8f5701b2016-04-04 18:36:02 -07001729 * Flag to indicate that this window is always drawing the status bar background, no matter
1730 * what the other flags are.
1731 * @hide
1732 */
1733 public static final int PRIVATE_FLAG_FORCE_DRAW_STATUS_BAR_BACKGROUND = 0x00020000;
1734
1735 /**
Ruchi Kandoi43e38de2016-04-14 19:34:53 -07001736 * Flag to indicate that this window needs Sustained Performance Mode if
1737 * the device supports it.
1738 * @hide
1739 */
John Reck60e885f2016-04-21 15:40:45 -07001740 public static final int PRIVATE_FLAG_SUSTAINED_PERFORMANCE_MODE = 0x00040000;
Ruchi Kandoi43e38de2016-04-14 19:34:53 -07001741
1742 /**
Wale Ogunwale01ad4342017-06-30 07:07:01 -07001743 * Flag to indicate that any window added by an application process that is of type
1744 * {@link #TYPE_TOAST} or that requires
1745 * {@link android.app.AppOpsManager#OP_SYSTEM_ALERT_WINDOW} permission should be hidden when
1746 * this window is visible.
Jorim Jaggi02886a82016-12-06 09:10:06 -08001747 * @hide
1748 */
Philip P. Moltmannd66dd992018-09-17 11:26:04 -07001749 @SystemApi
Wale Ogunwalec0b0f932017-11-01 12:51:43 -07001750 @RequiresPermission(permission.HIDE_NON_SYSTEM_OVERLAY_WINDOWS)
Philip P. Moltmann66ce2382018-10-09 13:46:11 -07001751 public static final int SYSTEM_FLAG_HIDE_NON_SYSTEM_OVERLAY_WINDOWS = 0x00080000;
Jorim Jaggi02886a82016-12-06 09:10:06 -08001752
1753 /**
Robert Carr132c9f52017-07-31 17:02:30 -07001754 * Indicates that this window is the rounded corners overlay present on some
1755 * devices this means that it will be excluded from: screenshots,
1756 * screen magnification, and mirroring.
Phil Weaverd321075e2017-06-13 09:13:35 -07001757 * @hide
1758 */
Robert Carr132c9f52017-07-31 17:02:30 -07001759 public static final int PRIVATE_FLAG_IS_ROUNDED_CORNERS_OVERLAY = 0x00100000;
Phil Weaverd321075e2017-06-13 09:13:35 -07001760
1761 /**
Wale Ogunwalec0b0f932017-11-01 12:51:43 -07001762 * Flag to indicate that this window should be considered a screen decoration similar to the
1763 * nav bar and status bar. This will cause this window to affect the window insets reported
1764 * to other windows when it is visible.
1765 * @hide
1766 */
1767 @RequiresPermission(permission.STATUS_BAR_SERVICE)
1768 public static final int PRIVATE_FLAG_IS_SCREEN_DECOR = 0x00400000;
1769
1770 /**
Tiger Huanga90dea42018-08-03 17:20:17 +08001771 * Flag to indicate that the status bar window is in a state such that it forces showing
1772 * the navigation bar unless the navigation bar window is explicitly set to
1773 * {@link View#GONE}.
1774 * It only takes effects if this is set by {@link LayoutParams#TYPE_STATUS_BAR}.
Tiger Huang34046012018-06-29 15:26:52 +08001775 * @hide
1776 */
Tiger Huanga90dea42018-08-03 17:20:17 +08001777 public static final int PRIVATE_FLAG_STATUS_FORCE_SHOW_NAVIGATION = 0x00800000;
Tiger Huang34046012018-06-29 15:26:52 +08001778
1779 /**
Philip P. Moltmann66ce2382018-10-09 13:46:11 -07001780 * An internal annotation for flags that can be specified to {@link #softInputMode}.
1781 *
1782 * @hide
1783 */
1784 @SystemApi
1785 @Retention(RetentionPolicy.SOURCE)
1786 @IntDef(flag = true, prefix = { "SYSTEM_FLAG_" }, value = {
1787 SYSTEM_FLAG_HIDE_NON_SYSTEM_OVERLAY_WINDOWS,
1788 })
1789 public @interface SystemFlags {}
1790
1791 /**
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001792 * Control flags that are private to the platform.
1793 * @hide
1794 */
Jorim Jaggi484851b2017-09-22 16:03:27 +02001795 @ViewDebug.ExportedProperty(flagMapping = {
1796 @ViewDebug.FlagToString(
1797 mask = PRIVATE_FLAG_FAKE_HARDWARE_ACCELERATED,
1798 equals = PRIVATE_FLAG_FAKE_HARDWARE_ACCELERATED,
1799 name = "FAKE_HARDWARE_ACCELERATED"),
1800 @ViewDebug.FlagToString(
1801 mask = PRIVATE_FLAG_FORCE_HARDWARE_ACCELERATED,
1802 equals = PRIVATE_FLAG_FORCE_HARDWARE_ACCELERATED,
1803 name = "FORCE_HARDWARE_ACCELERATED"),
1804 @ViewDebug.FlagToString(
1805 mask = PRIVATE_FLAG_WANTS_OFFSET_NOTIFICATIONS,
1806 equals = PRIVATE_FLAG_WANTS_OFFSET_NOTIFICATIONS,
1807 name = "WANTS_OFFSET_NOTIFICATIONS"),
1808 @ViewDebug.FlagToString(
1809 mask = PRIVATE_FLAG_SHOW_FOR_ALL_USERS,
1810 equals = PRIVATE_FLAG_SHOW_FOR_ALL_USERS,
1811 name = "SHOW_FOR_ALL_USERS"),
1812 @ViewDebug.FlagToString(
1813 mask = PRIVATE_FLAG_NO_MOVE_ANIMATION,
1814 equals = PRIVATE_FLAG_NO_MOVE_ANIMATION,
1815 name = "NO_MOVE_ANIMATION"),
1816 @ViewDebug.FlagToString(
1817 mask = PRIVATE_FLAG_COMPATIBLE_WINDOW,
1818 equals = PRIVATE_FLAG_COMPATIBLE_WINDOW,
1819 name = "COMPATIBLE_WINDOW"),
1820 @ViewDebug.FlagToString(
1821 mask = PRIVATE_FLAG_SYSTEM_ERROR,
1822 equals = PRIVATE_FLAG_SYSTEM_ERROR,
1823 name = "SYSTEM_ERROR"),
1824 @ViewDebug.FlagToString(
1825 mask = PRIVATE_FLAG_INHERIT_TRANSLUCENT_DECOR,
1826 equals = PRIVATE_FLAG_INHERIT_TRANSLUCENT_DECOR,
1827 name = "INHERIT_TRANSLUCENT_DECOR"),
1828 @ViewDebug.FlagToString(
1829 mask = PRIVATE_FLAG_KEYGUARD,
1830 equals = PRIVATE_FLAG_KEYGUARD,
1831 name = "KEYGUARD"),
1832 @ViewDebug.FlagToString(
1833 mask = PRIVATE_FLAG_DISABLE_WALLPAPER_TOUCH_EVENTS,
1834 equals = PRIVATE_FLAG_DISABLE_WALLPAPER_TOUCH_EVENTS,
1835 name = "DISABLE_WALLPAPER_TOUCH_EVENTS"),
1836 @ViewDebug.FlagToString(
1837 mask = PRIVATE_FLAG_FORCE_STATUS_BAR_VISIBLE_TRANSPARENT,
1838 equals = PRIVATE_FLAG_FORCE_STATUS_BAR_VISIBLE_TRANSPARENT,
1839 name = "FORCE_STATUS_BAR_VISIBLE_TRANSPARENT"),
1840 @ViewDebug.FlagToString(
1841 mask = PRIVATE_FLAG_PRESERVE_GEOMETRY,
1842 equals = PRIVATE_FLAG_PRESERVE_GEOMETRY,
1843 name = "PRESERVE_GEOMETRY"),
1844 @ViewDebug.FlagToString(
1845 mask = PRIVATE_FLAG_FORCE_DECOR_VIEW_VISIBILITY,
1846 equals = PRIVATE_FLAG_FORCE_DECOR_VIEW_VISIBILITY,
1847 name = "FORCE_DECOR_VIEW_VISIBILITY"),
1848 @ViewDebug.FlagToString(
1849 mask = PRIVATE_FLAG_WILL_NOT_REPLACE_ON_RELAUNCH,
1850 equals = PRIVATE_FLAG_WILL_NOT_REPLACE_ON_RELAUNCH,
1851 name = "WILL_NOT_REPLACE_ON_RELAUNCH"),
1852 @ViewDebug.FlagToString(
1853 mask = PRIVATE_FLAG_LAYOUT_CHILD_WINDOW_IN_PARENT_FRAME,
1854 equals = PRIVATE_FLAG_LAYOUT_CHILD_WINDOW_IN_PARENT_FRAME,
1855 name = "LAYOUT_CHILD_WINDOW_IN_PARENT_FRAME"),
1856 @ViewDebug.FlagToString(
1857 mask = PRIVATE_FLAG_FORCE_DRAW_STATUS_BAR_BACKGROUND,
1858 equals = PRIVATE_FLAG_FORCE_DRAW_STATUS_BAR_BACKGROUND,
1859 name = "FORCE_DRAW_STATUS_BAR_BACKGROUND"),
1860 @ViewDebug.FlagToString(
1861 mask = PRIVATE_FLAG_SUSTAINED_PERFORMANCE_MODE,
1862 equals = PRIVATE_FLAG_SUSTAINED_PERFORMANCE_MODE,
1863 name = "SUSTAINED_PERFORMANCE_MODE"),
1864 @ViewDebug.FlagToString(
Philip P. Moltmann66ce2382018-10-09 13:46:11 -07001865 mask = SYSTEM_FLAG_HIDE_NON_SYSTEM_OVERLAY_WINDOWS,
1866 equals = SYSTEM_FLAG_HIDE_NON_SYSTEM_OVERLAY_WINDOWS,
Jorim Jaggi484851b2017-09-22 16:03:27 +02001867 name = "HIDE_NON_SYSTEM_OVERLAY_WINDOWS"),
1868 @ViewDebug.FlagToString(
1869 mask = PRIVATE_FLAG_IS_ROUNDED_CORNERS_OVERLAY,
1870 equals = PRIVATE_FLAG_IS_ROUNDED_CORNERS_OVERLAY,
1871 name = "IS_ROUNDED_CORNERS_OVERLAY"),
1872 @ViewDebug.FlagToString(
Wale Ogunwalec0b0f932017-11-01 12:51:43 -07001873 mask = PRIVATE_FLAG_IS_SCREEN_DECOR,
1874 equals = PRIVATE_FLAG_IS_SCREEN_DECOR,
Tiger Huang34046012018-06-29 15:26:52 +08001875 name = "IS_SCREEN_DECOR"),
1876 @ViewDebug.FlagToString(
Tiger Huanga90dea42018-08-03 17:20:17 +08001877 mask = PRIVATE_FLAG_STATUS_FORCE_SHOW_NAVIGATION,
1878 equals = PRIVATE_FLAG_STATUS_FORCE_SHOW_NAVIGATION,
1879 name = "STATUS_FORCE_SHOW_NAVIGATION")
Jorim Jaggi484851b2017-09-22 16:03:27 +02001880 })
Robert Carrb48380a2017-04-04 14:56:37 -07001881 @TestApi
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001882 public int privateFlags;
1883
1884 /**
Wale Ogunwale393b1c12014-10-18 16:22:01 -07001885 * Value for {@link #needsMenuKey} for a window that has not explicitly specified if it
1886 * needs {@link #NEEDS_MENU_SET_TRUE} or doesn't need {@link #NEEDS_MENU_SET_FALSE} a menu
1887 * key. For this case, we should look at windows behind it to determine the appropriate
1888 * value.
1889 *
1890 * @hide
1891 */
1892 public static final int NEEDS_MENU_UNSET = 0;
1893
1894 /**
1895 * Value for {@link #needsMenuKey} for a window that has explicitly specified it needs a
1896 * menu key.
1897 *
1898 * @hide
1899 */
Mathew Inwooda570dee2018-08-17 14:56:00 +01001900 @UnsupportedAppUsage
Wale Ogunwale393b1c12014-10-18 16:22:01 -07001901 public static final int NEEDS_MENU_SET_TRUE = 1;
1902
1903 /**
1904 * Value for {@link #needsMenuKey} for a window that has explicitly specified it doesn't
1905 * needs a menu key.
1906 *
1907 * @hide
1908 */
Mathew Inwooda570dee2018-08-17 14:56:00 +01001909 @UnsupportedAppUsage
Wale Ogunwale393b1c12014-10-18 16:22:01 -07001910 public static final int NEEDS_MENU_SET_FALSE = 2;
1911
1912 /**
1913 * State variable for a window belonging to an activity that responds to
1914 * {@link KeyEvent#KEYCODE_MENU} and therefore needs a Menu key. For devices where Menu is a
1915 * physical button this variable is ignored, but on devices where the Menu key is drawn in
1916 * software it may be hidden unless this variable is set to {@link #NEEDS_MENU_SET_TRUE}.
1917 *
1918 * (Note that Action Bars, when available, are the preferred way to offer additional
1919 * functions otherwise accessed via an options menu.)
1920 *
1921 * {@hide}
1922 */
Mathew Inwooda570dee2018-08-17 14:56:00 +01001923 @UnsupportedAppUsage
Wale Ogunwale393b1c12014-10-18 16:22:01 -07001924 public int needsMenuKey = NEEDS_MENU_UNSET;
1925
1926 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001927 * Given a particular set of window manager flags, determine whether
1928 * such a window may be a target for an input method when it has
1929 * focus. In particular, this checks the
1930 * {@link #FLAG_NOT_FOCUSABLE} and {@link #FLAG_ALT_FOCUSABLE_IM}
1931 * flags and returns true if the combination of the two corresponds
1932 * to a window that needs to be behind the input method so that the
1933 * user can type into it.
Wale Ogunwale393b1c12014-10-18 16:22:01 -07001934 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001935 * @param flags The current window manager flags.
Wale Ogunwale393b1c12014-10-18 16:22:01 -07001936 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001937 * @return Returns true if such a window should be behind/interact
1938 * with an input method, false if not.
1939 */
1940 public static boolean mayUseInputMethod(int flags) {
1941 switch (flags&(FLAG_NOT_FOCUSABLE|FLAG_ALT_FOCUSABLE_IM)) {
1942 case 0:
1943 case FLAG_NOT_FOCUSABLE|FLAG_ALT_FOCUSABLE_IM:
1944 return true;
1945 }
1946 return false;
1947 }
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001948
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001949 /**
1950 * Mask for {@link #softInputMode} of the bits that determine the
1951 * desired visibility state of the soft input area for this window.
1952 */
1953 public static final int SOFT_INPUT_MASK_STATE = 0x0f;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001954
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001955 /**
Yohei Yukawaa7547852018-03-27 15:47:45 -07001956 * Visibility state for {@link #softInputMode}: no state has been specified. The system may
1957 * show or hide the software keyboard for better user experience when the window gains
1958 * focus.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001959 */
1960 public static final int SOFT_INPUT_STATE_UNSPECIFIED = 0;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001961
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001962 /**
1963 * Visibility state for {@link #softInputMode}: please don't change the state of
1964 * the soft input area.
1965 */
1966 public static final int SOFT_INPUT_STATE_UNCHANGED = 1;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001967
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001968 /**
1969 * Visibility state for {@link #softInputMode}: please hide any soft input
1970 * area when normally appropriate (when the user is navigating
1971 * forward to your window).
1972 */
1973 public static final int SOFT_INPUT_STATE_HIDDEN = 2;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001974
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001975 /**
1976 * Visibility state for {@link #softInputMode}: please always hide any
1977 * soft input area when this window receives focus.
1978 */
1979 public static final int SOFT_INPUT_STATE_ALWAYS_HIDDEN = 3;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001980
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001981 /**
1982 * Visibility state for {@link #softInputMode}: please show the soft
1983 * input area when normally appropriate (when the user is navigating
1984 * forward to your window).
Yohei Yukawacf68d522017-12-12 09:33:26 -08001985 *
1986 * <p>Applications that target {@link android.os.Build.VERSION_CODES#P} and later, this flag
1987 * is ignored unless there is a focused view that returns {@code true} from
1988 * {@link View#isInEditMode()} when the window is focused.</p>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001989 */
1990 public static final int SOFT_INPUT_STATE_VISIBLE = 4;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001991
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001992 /**
1993 * Visibility state for {@link #softInputMode}: please always make the
1994 * soft input area visible when this window receives input focus.
Yohei Yukawacf68d522017-12-12 09:33:26 -08001995 *
1996 * <p>Applications that target {@link android.os.Build.VERSION_CODES#P} and later, this flag
1997 * is ignored unless there is a focused view that returns {@code true} from
1998 * {@link View#isInEditMode()} when the window is focused.</p>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001999 */
2000 public static final int SOFT_INPUT_STATE_ALWAYS_VISIBLE = 5;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002001
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002002 /**
2003 * Mask for {@link #softInputMode} of the bits that determine the
2004 * way that the window should be adjusted to accommodate the soft
2005 * input window.
2006 */
2007 public static final int SOFT_INPUT_MASK_ADJUST = 0xf0;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002008
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002009 /** Adjustment option for {@link #softInputMode}: nothing specified.
2010 * The system will try to pick one or
2011 * the other depending on the contents of the window.
2012 */
2013 public static final int SOFT_INPUT_ADJUST_UNSPECIFIED = 0x00;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002014
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002015 /** Adjustment option for {@link #softInputMode}: set to allow the
2016 * window to be resized when an input
2017 * method is shown, so that its contents are not covered by the input
Scott Mainf10e6332010-06-11 09:03:22 -07002018 * method. This can <em>not</em> be combined with
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002019 * {@link #SOFT_INPUT_ADJUST_PAN}; if
2020 * neither of these are set, then the system will try to pick one or
Chet Haase45c89c22013-04-29 16:04:40 -07002021 * the other depending on the contents of the window. If the window's
2022 * layout parameter flags include {@link #FLAG_FULLSCREEN}, this
2023 * value for {@link #softInputMode} will be ignored; the window will
2024 * not resize, but will stay fullscreen.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002025 */
2026 public static final int SOFT_INPUT_ADJUST_RESIZE = 0x10;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002027
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002028 /** Adjustment option for {@link #softInputMode}: set to have a window
2029 * pan when an input method is
2030 * shown, so it doesn't need to deal with resizing but just panned
2031 * by the framework to ensure the current input focus is visible. This
Scott Mainf10e6332010-06-11 09:03:22 -07002032 * can <em>not</em> be combined with {@link #SOFT_INPUT_ADJUST_RESIZE}; if
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002033 * neither of these are set, then the system will try to pick one or
2034 * the other depending on the contents of the window.
2035 */
2036 public static final int SOFT_INPUT_ADJUST_PAN = 0x20;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002037
Dianne Hackborndea3ef72010-10-28 14:24:22 -07002038 /** Adjustment option for {@link #softInputMode}: set to have a window
2039 * not adjust for a shown input method. The window will not be resized,
2040 * and it will not be panned to make its focus visible.
2041 */
2042 public static final int SOFT_INPUT_ADJUST_NOTHING = 0x30;
2043
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002044 /**
2045 * Bit for {@link #softInputMode}: set when the user has navigated
2046 * forward to the window. This is normally set automatically for
2047 * you by the system, though you may want to set it in certain cases
2048 * when you are displaying a window yourself. This flag will always
2049 * be cleared automatically after the window is displayed.
2050 */
2051 public static final int SOFT_INPUT_IS_FORWARD_NAVIGATION = 0x100;
Mike Lockwoodfb73f792009-11-20 11:31:18 -05002052
2053 /**
Yohei Yukawa22dac1c2017-02-12 16:54:16 -08002054 * An internal annotation for flags that can be specified to {@link #softInputMode}.
2055 *
2056 * @hide
2057 */
2058 @Retention(RetentionPolicy.SOURCE)
Jeff Sharkeyce8db992017-12-13 20:05:05 -07002059 @IntDef(flag = true, prefix = { "SOFT_INPUT_" }, value = {
Yohei Yukawa22dac1c2017-02-12 16:54:16 -08002060 SOFT_INPUT_STATE_UNSPECIFIED,
2061 SOFT_INPUT_STATE_UNCHANGED,
2062 SOFT_INPUT_STATE_HIDDEN,
2063 SOFT_INPUT_STATE_ALWAYS_HIDDEN,
2064 SOFT_INPUT_STATE_VISIBLE,
2065 SOFT_INPUT_STATE_ALWAYS_VISIBLE,
2066 SOFT_INPUT_ADJUST_UNSPECIFIED,
2067 SOFT_INPUT_ADJUST_RESIZE,
2068 SOFT_INPUT_ADJUST_PAN,
2069 SOFT_INPUT_ADJUST_NOTHING,
2070 SOFT_INPUT_IS_FORWARD_NAVIGATION,
2071 })
2072 public @interface SoftInputModeFlags {}
2073
2074 /**
Gilles Debunnebe2c4f92011-01-17 15:14:32 -08002075 * Desired operating mode for any soft input area. May be any combination
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002076 * of:
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002077 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002078 * <ul>
2079 * <li> One of the visibility states
2080 * {@link #SOFT_INPUT_STATE_UNSPECIFIED}, {@link #SOFT_INPUT_STATE_UNCHANGED},
Yohei Yukawa22dac1c2017-02-12 16:54:16 -08002081 * {@link #SOFT_INPUT_STATE_HIDDEN}, {@link #SOFT_INPUT_STATE_ALWAYS_HIDDEN},
2082 * {@link #SOFT_INPUT_STATE_VISIBLE}, or {@link #SOFT_INPUT_STATE_ALWAYS_VISIBLE}.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002083 * <li> One of the adjustment options
Yohei Yukawa22dac1c2017-02-12 16:54:16 -08002084 * {@link #SOFT_INPUT_ADJUST_UNSPECIFIED}, {@link #SOFT_INPUT_ADJUST_RESIZE},
2085 * {@link #SOFT_INPUT_ADJUST_PAN}, or {@link #SOFT_INPUT_ADJUST_NOTHING}.
Dianne Hackborn1bf1af62013-02-25 16:48:53 -08002086 * </ul>
2087 *
2088 *
2089 * <p>This flag can be controlled in your theme through the
2090 * {@link android.R.attr#windowSoftInputMode} attribute.</p>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002091 */
Yohei Yukawa22dac1c2017-02-12 16:54:16 -08002092 @SoftInputModeFlags
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002093 public int softInputMode;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002094
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002095 /**
Dianne Hackborn8eb2e242010-11-01 12:31:24 -07002096 * Placement of window within the screen as per {@link Gravity}. Both
2097 * {@link Gravity#apply(int, int, int, android.graphics.Rect, int, int,
2098 * android.graphics.Rect) Gravity.apply} and
2099 * {@link Gravity#applyDisplay(int, android.graphics.Rect, android.graphics.Rect)
2100 * Gravity.applyDisplay} are used during window layout, with this value
2101 * given as the desired gravity. For example you can specify
2102 * {@link Gravity#DISPLAY_CLIP_HORIZONTAL Gravity.DISPLAY_CLIP_HORIZONTAL} and
2103 * {@link Gravity#DISPLAY_CLIP_VERTICAL Gravity.DISPLAY_CLIP_VERTICAL} here
2104 * to control the behavior of
2105 * {@link Gravity#applyDisplay(int, android.graphics.Rect, android.graphics.Rect)
2106 * Gravity.applyDisplay}.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002107 *
2108 * @see Gravity
2109 */
2110 public int gravity;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002111
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002112 /**
2113 * The horizontal margin, as a percentage of the container's width,
Dianne Hackborn8eb2e242010-11-01 12:31:24 -07002114 * between the container and the widget. See
2115 * {@link Gravity#apply(int, int, int, android.graphics.Rect, int, int,
2116 * android.graphics.Rect) Gravity.apply} for how this is used. This
2117 * field is added with {@link #x} to supply the <var>xAdj</var> parameter.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002118 */
2119 public float horizontalMargin;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002120
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002121 /**
2122 * The vertical margin, as a percentage of the container's height,
Dianne Hackborn8eb2e242010-11-01 12:31:24 -07002123 * between the container and the widget. See
2124 * {@link Gravity#apply(int, int, int, android.graphics.Rect, int, int,
2125 * android.graphics.Rect) Gravity.apply} for how this is used. This
2126 * field is added with {@link #y} to supply the <var>yAdj</var> parameter.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002127 */
2128 public float verticalMargin;
Alan Viveretteccb11e12014-07-08 16:04:02 -07002129
2130 /**
2131 * Positive insets between the drawing surface and window content.
2132 *
2133 * @hide
2134 */
Alan Viverette3aa1ffb2014-10-30 12:22:08 -07002135 public final Rect surfaceInsets = new Rect();
Alan Viverette5435a302015-01-29 10:25:34 -08002136
2137 /**
2138 * Whether the surface insets have been manually set. When set to
2139 * {@code false}, the view root will automatically determine the
2140 * appropriate surface insets.
2141 *
2142 * @see #surfaceInsets
2143 * @hide
2144 */
2145 public boolean hasManualSurfaceInsets;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002146
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002147 /**
Wale Ogunwale246c2092016-04-07 14:12:44 -07002148 * Whether the previous surface insets should be used vs. what is currently set. When set
2149 * to {@code true}, the view root will ignore surfaces insets in this object and use what
2150 * it currently has.
2151 *
2152 * @see #surfaceInsets
2153 * @hide
2154 */
2155 public boolean preservePreviousSurfaceInsets = true;
2156
2157 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002158 * The desired bitmap format. May be one of the constants in
Romain Guy48327452017-01-23 17:03:35 -08002159 * {@link android.graphics.PixelFormat}. The choice of format
2160 * might be overridden by {@link #setColorMode(int)}. Default is OPAQUE.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002161 */
2162 public int format;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002163
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002164 /**
2165 * A style resource defining the animations to use for this window.
2166 * This must be a system resource; it can not be an application resource
2167 * because the window manager does not have access to applications.
2168 */
2169 public int windowAnimations;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002170
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002171 /**
2172 * An alpha value to apply to this entire window.
2173 * An alpha of 1.0 means fully opaque and 0.0 means fully transparent
2174 */
2175 public float alpha = 1.0f;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002176
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002177 /**
2178 * When {@link #FLAG_DIM_BEHIND} is set, this is the amount of dimming
2179 * to apply. Range is from 1.0 for completely opaque to 0.0 for no
2180 * dim.
2181 */
2182 public float dimAmount = 1.0f;
Dianne Hackborndea3ef72010-10-28 14:24:22 -07002183
2184 /**
2185 * Default value for {@link #screenBrightness} and {@link #buttonBrightness}
2186 * indicating that the brightness value is not overridden for this window
2187 * and normal brightness policy should be used.
2188 */
2189 public static final float BRIGHTNESS_OVERRIDE_NONE = -1.0f;
2190
2191 /**
2192 * Value for {@link #screenBrightness} and {@link #buttonBrightness}
2193 * indicating that the screen or button backlight brightness should be set
2194 * to the lowest value when this window is in front.
2195 */
2196 public static final float BRIGHTNESS_OVERRIDE_OFF = 0.0f;
2197
2198 /**
2199 * Value for {@link #screenBrightness} and {@link #buttonBrightness}
2200 * indicating that the screen or button backlight brightness should be set
2201 * to the hightest value when this window is in front.
2202 */
2203 public static final float BRIGHTNESS_OVERRIDE_FULL = 1.0f;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002204
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002205 /**
2206 * This can be used to override the user's preferred brightness of
2207 * the screen. A value of less than 0, the default, means to use the
2208 * preferred screen brightness. 0 to 1 adjusts the brightness from
2209 * dark to full bright.
2210 */
Mike Lockwoodfb73f792009-11-20 11:31:18 -05002211 public float screenBrightness = BRIGHTNESS_OVERRIDE_NONE;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002212
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002213 /**
Mike Lockwoodfb73f792009-11-20 11:31:18 -05002214 * This can be used to override the standard behavior of the button and
2215 * keyboard backlights. A value of less than 0, the default, means to
2216 * use the standard backlight behavior. 0 to 1 adjusts the brightness
2217 * from dark to full bright.
2218 */
2219 public float buttonBrightness = BRIGHTNESS_OVERRIDE_NONE;
2220
2221 /**
Robert Carr427ba4f2017-07-17 18:37:06 -07002222 * Unspecified value for {@link #rotationAnimation} indicating
2223 * a lack of preference.
2224 * @hide
2225 */
2226 public static final int ROTATION_ANIMATION_UNSPECIFIED = -1;
2227
2228 /**
Robert Carr652aae42016-10-17 16:48:14 -07002229 * Value for {@link #rotationAnimation} which specifies that this
2230 * window will visually rotate in or out following a rotation.
Craig Mautner3c174372013-02-21 17:54:37 -08002231 */
2232 public static final int ROTATION_ANIMATION_ROTATE = 0;
2233
2234 /**
Robert Carr652aae42016-10-17 16:48:14 -07002235 * Value for {@link #rotationAnimation} which specifies that this
2236 * window will fade in or out following a rotation.
Craig Mautner3c174372013-02-21 17:54:37 -08002237 */
2238 public static final int ROTATION_ANIMATION_CROSSFADE = 1;
2239
2240 /**
Robert Carr652aae42016-10-17 16:48:14 -07002241 * Value for {@link #rotationAnimation} which specifies that this window
2242 * will immediately disappear or appear following a rotation.
Craig Mautner3c174372013-02-21 17:54:37 -08002243 */
2244 public static final int ROTATION_ANIMATION_JUMPCUT = 2;
2245
2246 /**
Robert Carr57d9fbd2016-08-15 12:00:35 -07002247 * Value for {@link #rotationAnimation} to specify seamless rotation mode.
2248 * This works like JUMPCUT but will fall back to CROSSFADE if rotation
Robert Carr652aae42016-10-17 16:48:14 -07002249 * can't be applied without pausing the screen. For example, this is ideal
2250 * for Camera apps which don't want the viewfinder contents to ever rotate
2251 * or fade (and rather to be seamless) but also don't want ROTATION_ANIMATION_JUMPCUT
2252 * during app transition scenarios where seamless rotation can't be applied.
Robert Carr57d9fbd2016-08-15 12:00:35 -07002253 */
2254 public static final int ROTATION_ANIMATION_SEAMLESS = 3;
2255
2256 /**
Craig Mautnerbdcc9a52013-04-19 13:06:53 -07002257 * Define the exit and entry animations used on this window when the device is rotated.
2258 * This only has an affect if the incoming and outgoing topmost
Craig Mautner3c174372013-02-21 17:54:37 -08002259 * opaque windows have the #FLAG_FULLSCREEN bit set and are not covered
Craig Mautnerbdcc9a52013-04-19 13:06:53 -07002260 * by other windows. All other situations default to the
2261 * {@link #ROTATION_ANIMATION_ROTATE} behavior.
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002262 *
Craig Mautner3c174372013-02-21 17:54:37 -08002263 * @see #ROTATION_ANIMATION_ROTATE
2264 * @see #ROTATION_ANIMATION_CROSSFADE
2265 * @see #ROTATION_ANIMATION_JUMPCUT
2266 */
2267 public int rotationAnimation = ROTATION_ANIMATION_ROTATE;
2268
2269 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002270 * Identifier for this window. This will usually be filled in for
2271 * you.
2272 */
2273 public IBinder token = null;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002274
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002275 /**
2276 * Name of the package owning this window.
2277 */
2278 public String packageName = null;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002279
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002280 /**
2281 * Specific orientation value for a window.
2282 * May be any of the same values allowed
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002283 * for {@link android.content.pm.ActivityInfo#screenOrientation}.
2284 * If not set, a default value of
2285 * {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_UNSPECIFIED}
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002286 * will be used.
2287 */
2288 public int screenOrientation = ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED;
Joe Onorato664644d2011-01-23 17:53:23 -08002289
2290 /**
Michael Wright3f145a22014-07-22 19:46:03 -07002291 * The preferred refresh rate for the window.
2292 *
2293 * This must be one of the supported refresh rates obtained for the display(s) the window
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002294 * is on. The selected refresh rate will be applied to the display's default mode.
2295 *
2296 * This value is ignored if {@link #preferredDisplayModeId} is set.
Michael Wright3f145a22014-07-22 19:46:03 -07002297 *
2298 * @see Display#getSupportedRefreshRates()
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002299 * @deprecated use {@link #preferredDisplayModeId} instead
Michael Wright3f145a22014-07-22 19:46:03 -07002300 */
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002301 @Deprecated
Michael Wright3f145a22014-07-22 19:46:03 -07002302 public float preferredRefreshRate;
2303
2304 /**
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002305 * Id of the preferred display mode for the window.
2306 * <p>
2307 * This must be one of the supported modes obtained for the display(s) the window is on.
2308 * A value of {@code 0} means no preference.
2309 *
2310 * @see Display#getSupportedModes()
2311 * @see Display.Mode#getModeId()
2312 */
2313 public int preferredDisplayModeId;
2314
2315 /**
Joe Onorato664644d2011-01-23 17:53:23 -08002316 * Control the visibility of the status bar.
Joe Onorato14782f72011-01-25 19:53:17 -08002317 *
2318 * @see View#STATUS_BAR_VISIBLE
2319 * @see View#STATUS_BAR_HIDDEN
Joe Onorato664644d2011-01-23 17:53:23 -08002320 */
2321 public int systemUiVisibility;
2322
2323 /**
Joe Onorato14782f72011-01-25 19:53:17 -08002324 * @hide
2325 * The ui visibility as requested by the views in this hierarchy.
2326 * the combined value should be systemUiVisibility | subtreeSystemUiVisibility.
2327 */
Mathew Inwooda570dee2018-08-17 14:56:00 +01002328 @UnsupportedAppUsage
Joe Onorato14782f72011-01-25 19:53:17 -08002329 public int subtreeSystemUiVisibility;
2330
2331 /**
Joe Onorato664644d2011-01-23 17:53:23 -08002332 * Get callbacks about the system ui visibility changing.
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002333 *
Joe Onorato664644d2011-01-23 17:53:23 -08002334 * TODO: Maybe there should be a bitfield of optional callbacks that we need.
2335 *
2336 * @hide
2337 */
Mathew Inwooda570dee2018-08-17 14:56:00 +01002338 @UnsupportedAppUsage
Joe Onorato664644d2011-01-23 17:53:23 -08002339 public boolean hasSystemUiListeners;
2340
Adrian Roosfa02da62018-01-15 16:01:18 +01002341
2342 /** @hide */
2343 @Retention(RetentionPolicy.SOURCE)
2344 @IntDef(
2345 flag = true,
2346 value = {LAYOUT_IN_DISPLAY_CUTOUT_MODE_DEFAULT,
Adrian Roos87526af2018-03-27 16:36:25 +02002347 LAYOUT_IN_DISPLAY_CUTOUT_MODE_SHORT_EDGES,
Adrian Roosfa02da62018-01-15 16:01:18 +01002348 LAYOUT_IN_DISPLAY_CUTOUT_MODE_NEVER})
2349 @interface LayoutInDisplayCutoutMode {}
2350
2351 /**
2352 * Controls how the window is laid out if there is a {@link DisplayCutout}.
2353 *
2354 * <p>
2355 * Defaults to {@link #LAYOUT_IN_DISPLAY_CUTOUT_MODE_DEFAULT}.
2356 *
2357 * @see #LAYOUT_IN_DISPLAY_CUTOUT_MODE_DEFAULT
Adrian Roos87526af2018-03-27 16:36:25 +02002358 * @see #LAYOUT_IN_DISPLAY_CUTOUT_MODE_SHORT_EDGES
Adrian Roosfa02da62018-01-15 16:01:18 +01002359 * @see #LAYOUT_IN_DISPLAY_CUTOUT_MODE_NEVER
2360 * @see DisplayCutout
Adrian Roos87526af2018-03-27 16:36:25 +02002361 * @see android.R.attr#windowLayoutInDisplayCutoutMode
2362 * android:windowLayoutInDisplayCutoutMode
Adrian Roosfa02da62018-01-15 16:01:18 +01002363 */
2364 @LayoutInDisplayCutoutMode
2365 public int layoutInDisplayCutoutMode = LAYOUT_IN_DISPLAY_CUTOUT_MODE_DEFAULT;
2366
2367 /**
2368 * The window is allowed to extend into the {@link DisplayCutout} area, only if the
Adrian Roos6a4fa0e2018-03-05 19:50:16 +01002369 * {@link DisplayCutout} is fully contained within a system bar. Otherwise, the window is
Adrian Roosfa02da62018-01-15 16:01:18 +01002370 * laid out such that it does not overlap with the {@link DisplayCutout} area.
2371 *
2372 * <p>
Adrian Roos87526af2018-03-27 16:36:25 +02002373 * In practice, this means that if the window did not set {@link #FLAG_FULLSCREEN} or
2374 * {@link View#SYSTEM_UI_FLAG_FULLSCREEN}, it can extend into the cutout area in portrait
2375 * if the cutout is at the top edge. Similarly for
2376 * {@link View#SYSTEM_UI_FLAG_HIDE_NAVIGATION} and a cutout at the bottom of the screen.
Adrian Roos6a4fa0e2018-03-05 19:50:16 +01002377 * Otherwise (i.e. fullscreen or landscape) it is laid out such that it does not overlap the
Adrian Roosfa02da62018-01-15 16:01:18 +01002378 * cutout area.
2379 *
2380 * <p>
Adrian Roos6a4fa0e2018-03-05 19:50:16 +01002381 * The usual precautions for not overlapping with the status and navigation bar are
2382 * sufficient for ensuring that no important content overlaps with the DisplayCutout.
Adrian Roosfa02da62018-01-15 16:01:18 +01002383 *
2384 * @see DisplayCutout
2385 * @see WindowInsets
Adrian Roos87526af2018-03-27 16:36:25 +02002386 * @see #layoutInDisplayCutoutMode
2387 * @see android.R.attr#windowLayoutInDisplayCutoutMode
2388 * android:windowLayoutInDisplayCutoutMode
Adrian Roosfa02da62018-01-15 16:01:18 +01002389 */
2390 public static final int LAYOUT_IN_DISPLAY_CUTOUT_MODE_DEFAULT = 0;
2391
2392 /**
Adrian Roos6a4fa0e2018-03-05 19:50:16 +01002393 * @deprecated use {@link #LAYOUT_IN_DISPLAY_CUTOUT_MODE_SHORT_EDGES}
2394 * @hide
2395 */
2396 @Deprecated
2397 public static final int LAYOUT_IN_DISPLAY_CUTOUT_MODE_ALWAYS = 1;
2398
2399 /**
2400 * The window is always allowed to extend into the {@link DisplayCutout} areas on the short
2401 * edges of the screen.
2402 *
2403 * The window will never extend into a {@link DisplayCutout} area on the long edges of the
2404 * screen.
Adrian Roosfa02da62018-01-15 16:01:18 +01002405 *
2406 * <p>
2407 * The window must make sure that no important content overlaps with the
2408 * {@link DisplayCutout}.
2409 *
Adrian Roosad1da312018-03-27 19:17:50 +02002410 * <p>
2411 * In this mode, the window extends under cutouts on the short edge of the display in both
2412 * portrait and landscape, regardless of whether the window is hiding the system bars:<br/>
2413 * <img src="{@docRoot}reference/android/images/display_cutout/short_edge/fullscreen_top_no_letterbox.png"
2414 * height="720"
2415 * alt="Screenshot of a fullscreen activity on a display with a cutout at the top edge in
2416 * portrait, no letterbox is applied."/>
2417 *
2418 * <img src="{@docRoot}reference/android/images/display_cutout/short_edge/landscape_top_no_letterbox.png"
2419 * width="720"
2420 * alt="Screenshot of an activity on a display with a cutout at the top edge in landscape,
2421 * no letterbox is applied."/>
2422 *
2423 * <p>
2424 * A cutout in the corner is considered to be on the short edge: <br/>
2425 * <img src="{@docRoot}reference/android/images/display_cutout/short_edge/fullscreen_corner_no_letterbox.png"
2426 * height="720"
2427 * alt="Screenshot of a fullscreen activity on a display with a cutout in the corner in
2428 * portrait, no letterbox is applied."/>
2429 *
2430 * <p>
2431 * On the other hand, should the cutout be on the long edge of the display, a letterbox will
2432 * be applied such that the window does not extend into the cutout on either long edge:
2433 * <br/>
2434 * <img src="{@docRoot}reference/android/images/display_cutout/short_edge/portrait_side_letterbox.png"
2435 * height="720"
2436 * alt="Screenshot of an activity on a display with a cutout on the long edge in portrait,
2437 * letterbox is applied."/>
2438 *
Adrian Roosfa02da62018-01-15 16:01:18 +01002439 * @see DisplayCutout
2440 * @see WindowInsets#getDisplayCutout()
Adrian Roos87526af2018-03-27 16:36:25 +02002441 * @see #layoutInDisplayCutoutMode
2442 * @see android.R.attr#windowLayoutInDisplayCutoutMode
2443 * android:windowLayoutInDisplayCutoutMode
Adrian Roosfa02da62018-01-15 16:01:18 +01002444 */
Adrian Roos6a4fa0e2018-03-05 19:50:16 +01002445 public static final int LAYOUT_IN_DISPLAY_CUTOUT_MODE_SHORT_EDGES = 1;
Adrian Roosfa02da62018-01-15 16:01:18 +01002446
2447 /**
2448 * The window is never allowed to overlap with the DisplayCutout area.
2449 *
2450 * <p>
Adrian Roos87526af2018-03-27 16:36:25 +02002451 * This should be used with windows that transiently set
2452 * {@link View#SYSTEM_UI_FLAG_FULLSCREEN} or {@link View#SYSTEM_UI_FLAG_HIDE_NAVIGATION}
2453 * to avoid a relayout of the window when the respective flag is set or cleared.
Adrian Roosfa02da62018-01-15 16:01:18 +01002454 *
2455 * @see DisplayCutout
Adrian Roos87526af2018-03-27 16:36:25 +02002456 * @see #layoutInDisplayCutoutMode
2457 * @see android.R.attr#windowLayoutInDisplayCutoutMode
2458 * android:windowLayoutInDisplayCutoutMode
Adrian Roosfa02da62018-01-15 16:01:18 +01002459 */
2460 public static final int LAYOUT_IN_DISPLAY_CUTOUT_MODE_NEVER = 2;
2461
2462
Jeff Brown474dcb52011-06-14 20:22:50 -07002463 /**
2464 * When this window has focus, disable touch pad pointer gesture processing.
2465 * The window will receive raw position updates from the touch pad instead
2466 * of pointer movements and synthetic touch events.
2467 *
2468 * @hide
2469 */
2470 public static final int INPUT_FEATURE_DISABLE_POINTER_GESTURES = 0x00000001;
2471
2472 /**
Jeff Browncc4f7db2011-08-30 20:34:48 -07002473 * Does not construct an input channel for this window. The channel will therefore
2474 * be incapable of receiving input.
2475 *
2476 * @hide
2477 */
2478 public static final int INPUT_FEATURE_NO_INPUT_CHANNEL = 0x00000002;
2479
2480 /**
Jeff Brown1e3b98d2012-09-30 18:58:59 -07002481 * When this window has focus, does not call user activity for all input events so
2482 * the application will have to do it itself. Should only be used by
2483 * the keyguard and phone app.
2484 * <p>
2485 * Should only be used by the keyguard and phone app.
2486 * </p>
2487 *
2488 * @hide
2489 */
Mathew Inwooda570dee2018-08-17 14:56:00 +01002490 @UnsupportedAppUsage
Jeff Brown1e3b98d2012-09-30 18:58:59 -07002491 public static final int INPUT_FEATURE_DISABLE_USER_ACTIVITY = 0x00000004;
2492
2493 /**
Jeff Brown474dcb52011-06-14 20:22:50 -07002494 * Control special features of the input subsystem.
2495 *
Craig Mautnerbdcc9a52013-04-19 13:06:53 -07002496 * @see #INPUT_FEATURE_DISABLE_POINTER_GESTURES
Jeff Browncc4f7db2011-08-30 20:34:48 -07002497 * @see #INPUT_FEATURE_NO_INPUT_CHANNEL
Jeff Brown1e3b98d2012-09-30 18:58:59 -07002498 * @see #INPUT_FEATURE_DISABLE_USER_ACTIVITY
Jeff Brown474dcb52011-06-14 20:22:50 -07002499 * @hide
2500 */
Mathew Inwooda570dee2018-08-17 14:56:00 +01002501 @UnsupportedAppUsage
Jeff Brown474dcb52011-06-14 20:22:50 -07002502 public int inputFeatures;
2503
Jeff Brown1e3b98d2012-09-30 18:58:59 -07002504 /**
2505 * Sets the number of milliseconds before the user activity timeout occurs
2506 * when this window has focus. A value of -1 uses the standard timeout.
2507 * A value of 0 uses the minimum support display timeout.
2508 * <p>
2509 * This property can only be used to reduce the user specified display timeout;
2510 * it can never make the timeout longer than it normally would be.
2511 * </p><p>
2512 * Should only be used by the keyguard and phone app.
2513 * </p>
2514 *
2515 * @hide
2516 */
Mathew Inwooda570dee2018-08-17 14:56:00 +01002517 @UnsupportedAppUsage
Jeff Brown1e3b98d2012-09-30 18:58:59 -07002518 public long userActivityTimeout = -1;
2519
Phil Weaver396d5492016-03-22 17:53:50 -07002520 /**
2521 * For windows with an anchor (e.g. PopupWindow), keeps track of the View that anchors the
2522 * window.
2523 *
2524 * @hide
2525 */
Phil Weaver8583ae82018-02-13 11:01:24 -08002526 public long accessibilityIdOfAnchor = AccessibilityNodeInfo.UNDEFINED_NODE_ID;
Phil Weaver396d5492016-03-22 17:53:50 -07002527
Phil Weaver9be3c7b2016-04-07 15:15:41 -07002528 /**
2529 * The window title isn't kept in sync with what is displayed in the title bar, so we
2530 * separately track the currently shown title to provide to accessibility.
2531 *
2532 * @hide
2533 */
Alan Viverette39259dd2017-05-25 11:10:46 -04002534 @TestApi
Phil Weaver9be3c7b2016-04-07 15:15:41 -07002535 public CharSequence accessibilityTitle;
2536
Robert Carr70f0d222016-04-10 16:33:08 -07002537 /**
Svetoslav Ganovaa076532016-08-01 19:16:43 -07002538 * Sets a timeout in milliseconds before which the window will be hidden
Robert Carr70f0d222016-04-10 16:33:08 -07002539 * by the window manager. Useful for transient notifications like toasts
2540 * so we don't have to rely on client cooperation to ensure the window
Svetoslav Ganovaa076532016-08-01 19:16:43 -07002541 * is hidden. Must be specified at window creation time. Note that apps
2542 * are not prepared to handle their windows being removed without their
2543 * explicit request and may try to interact with the removed window
2544 * resulting in undefined behavior and crashes. Therefore, we do hide
2545 * such windows to prevent them from overlaying other apps.
Robert Carr70f0d222016-04-10 16:33:08 -07002546 *
2547 * @hide
2548 */
Mathew Inwooda570dee2018-08-17 14:56:00 +01002549 @UnsupportedAppUsage
Svetoslav Ganovaa076532016-08-01 19:16:43 -07002550 public long hideTimeoutMilliseconds = -1;
Robert Carr70f0d222016-04-10 16:33:08 -07002551
Romain Guy48327452017-01-23 17:03:35 -08002552 /**
2553 * The color mode requested by this window. The target display may
2554 * not be able to honor the request. When the color mode is not set
2555 * to {@link ActivityInfo#COLOR_MODE_DEFAULT}, it might override the
2556 * pixel format specified in {@link #format}.
2557 *
2558 * @hide
2559 */
2560 @ActivityInfo.ColorMode
Jorim Jaggi484851b2017-09-22 16:03:27 +02002561 private int mColorMode = COLOR_MODE_DEFAULT;
Romain Guy48327452017-01-23 17:03:35 -08002562
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002563 public LayoutParams() {
Romain Guy980a9382010-01-08 15:06:28 -08002564 super(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002565 type = TYPE_APPLICATION;
2566 format = PixelFormat.OPAQUE;
2567 }
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002568
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002569 public LayoutParams(int _type) {
Romain Guy980a9382010-01-08 15:06:28 -08002570 super(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002571 type = _type;
2572 format = PixelFormat.OPAQUE;
2573 }
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002574
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002575 public LayoutParams(int _type, int _flags) {
Romain Guy980a9382010-01-08 15:06:28 -08002576 super(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002577 type = _type;
2578 flags = _flags;
2579 format = PixelFormat.OPAQUE;
2580 }
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002581
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002582 public LayoutParams(int _type, int _flags, int _format) {
Romain Guy980a9382010-01-08 15:06:28 -08002583 super(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002584 type = _type;
2585 flags = _flags;
2586 format = _format;
2587 }
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002588
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002589 public LayoutParams(int w, int h, int _type, int _flags, int _format) {
2590 super(w, h);
2591 type = _type;
2592 flags = _flags;
2593 format = _format;
2594 }
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002595
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002596 public LayoutParams(int w, int h, int xpos, int ypos, int _type,
2597 int _flags, int _format) {
2598 super(w, h);
2599 x = xpos;
2600 y = ypos;
2601 type = _type;
2602 flags = _flags;
2603 format = _format;
2604 }
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002605
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002606 public final void setTitle(CharSequence title) {
2607 if (null == title)
2608 title = "";
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002609
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002610 mTitle = TextUtils.stringOrSpannedString(title);
2611 }
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002612
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002613 public final CharSequence getTitle() {
Wale Ogunwaleb6e2ead2016-02-15 08:28:47 -08002614 return mTitle != null ? mTitle : "";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002615 }
Bryce Lee53b9fbd2015-02-06 12:06:34 -08002616
Wale Ogunwale246c2092016-04-07 14:12:44 -07002617 /**
2618 * Sets the surface insets based on the elevation (visual z position) of the input view.
2619 * @hide
2620 */
2621 public final void setSurfaceInsets(View view, boolean manual, boolean preservePrevious) {
2622 final int surfaceInset = (int) Math.ceil(view.getZ() * 2);
Vladislav Kaznacheevcb4bbd72016-05-12 12:56:31 -07002623 // Partial workaround for b/28318973. Every inset change causes a freeform window
2624 // to jump a little for a few frames. If we never allow surface insets to decrease,
2625 // they will stabilize quickly (often from the very beginning, as most windows start
2626 // as focused).
2627 // TODO(b/22668382) to fix this properly.
2628 if (surfaceInset == 0) {
2629 // OK to have 0 (this is the case for non-freeform windows).
2630 surfaceInsets.set(0, 0, 0, 0);
2631 } else {
2632 surfaceInsets.set(
2633 Math.max(surfaceInset, surfaceInsets.left),
2634 Math.max(surfaceInset, surfaceInsets.top),
2635 Math.max(surfaceInset, surfaceInsets.right),
2636 Math.max(surfaceInset, surfaceInsets.bottom));
2637 }
Wale Ogunwale246c2092016-04-07 14:12:44 -07002638 hasManualSurfaceInsets = manual;
2639 preservePreviousSurfaceInsets = preservePrevious;
2640 }
2641
Romain Guy48327452017-01-23 17:03:35 -08002642 /**
2643 * <p>Set the color mode of the window. Setting the color mode might
2644 * override the window's pixel {@link WindowManager.LayoutParams#format format}.</p>
2645 *
2646 * <p>The color mode must be one of {@link ActivityInfo#COLOR_MODE_DEFAULT},
2647 * {@link ActivityInfo#COLOR_MODE_WIDE_COLOR_GAMUT} or
2648 * {@link ActivityInfo#COLOR_MODE_HDR}.</p>
2649 *
2650 * @see #getColorMode()
2651 */
2652 public void setColorMode(@ActivityInfo.ColorMode int colorMode) {
2653 mColorMode = colorMode;
2654 }
2655
2656 /**
2657 * Returns the color mode of the window, one of {@link ActivityInfo#COLOR_MODE_DEFAULT},
2658 * {@link ActivityInfo#COLOR_MODE_WIDE_COLOR_GAMUT} or {@link ActivityInfo#COLOR_MODE_HDR}.
2659 *
2660 * @see #setColorMode(int)
2661 */
2662 @ActivityInfo.ColorMode
2663 public int getColorMode() {
2664 return mColorMode;
2665 }
2666
Bryce Lee53b9fbd2015-02-06 12:06:34 -08002667 /** @hide */
2668 @SystemApi
2669 public final void setUserActivityTimeout(long timeout) {
2670 userActivityTimeout = timeout;
2671 }
2672
2673 /** @hide */
2674 @SystemApi
2675 public final long getUserActivityTimeout() {
2676 return userActivityTimeout;
2677 }
2678
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002679 public int describeContents() {
2680 return 0;
2681 }
2682
2683 public void writeToParcel(Parcel out, int parcelableFlags) {
2684 out.writeInt(width);
2685 out.writeInt(height);
2686 out.writeInt(x);
2687 out.writeInt(y);
2688 out.writeInt(type);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002689 out.writeInt(flags);
Dianne Hackborn5d927c22011-09-02 12:22:18 -07002690 out.writeInt(privateFlags);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002691 out.writeInt(softInputMode);
Adrian Roosfa02da62018-01-15 16:01:18 +01002692 out.writeInt(layoutInDisplayCutoutMode);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002693 out.writeInt(gravity);
2694 out.writeFloat(horizontalMargin);
2695 out.writeFloat(verticalMargin);
2696 out.writeInt(format);
2697 out.writeInt(windowAnimations);
2698 out.writeFloat(alpha);
2699 out.writeFloat(dimAmount);
2700 out.writeFloat(screenBrightness);
Mike Lockwoodfb73f792009-11-20 11:31:18 -05002701 out.writeFloat(buttonBrightness);
Craig Mautner3c174372013-02-21 17:54:37 -08002702 out.writeInt(rotationAnimation);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002703 out.writeStrongBinder(token);
2704 out.writeString(packageName);
2705 TextUtils.writeToParcel(mTitle, out, parcelableFlags);
2706 out.writeInt(screenOrientation);
Michael Wright3f145a22014-07-22 19:46:03 -07002707 out.writeFloat(preferredRefreshRate);
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002708 out.writeInt(preferredDisplayModeId);
Joe Onorato664644d2011-01-23 17:53:23 -08002709 out.writeInt(systemUiVisibility);
Joe Onorato14782f72011-01-25 19:53:17 -08002710 out.writeInt(subtreeSystemUiVisibility);
Joe Onorato664644d2011-01-23 17:53:23 -08002711 out.writeInt(hasSystemUiListeners ? 1 : 0);
Jeff Brown474dcb52011-06-14 20:22:50 -07002712 out.writeInt(inputFeatures);
Jeff Brown1e3b98d2012-09-30 18:58:59 -07002713 out.writeLong(userActivityTimeout);
Alan Viverette49a22e82014-07-12 20:01:27 -07002714 out.writeInt(surfaceInsets.left);
2715 out.writeInt(surfaceInsets.top);
2716 out.writeInt(surfaceInsets.right);
2717 out.writeInt(surfaceInsets.bottom);
Alan Viverette5435a302015-01-29 10:25:34 -08002718 out.writeInt(hasManualSurfaceInsets ? 1 : 0);
Wale Ogunwale246c2092016-04-07 14:12:44 -07002719 out.writeInt(preservePreviousSurfaceInsets ? 1 : 0);
Wale Ogunwale393b1c12014-10-18 16:22:01 -07002720 out.writeInt(needsMenuKey);
Phil Weaver8583ae82018-02-13 11:01:24 -08002721 out.writeLong(accessibilityIdOfAnchor);
Phil Weaver9be3c7b2016-04-07 15:15:41 -07002722 TextUtils.writeToParcel(accessibilityTitle, out, parcelableFlags);
Romain Guy26a2b972017-04-17 09:39:51 -07002723 out.writeInt(mColorMode);
Svetoslav Ganovaa076532016-08-01 19:16:43 -07002724 out.writeLong(hideTimeoutMilliseconds);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002725 }
Wale Ogunwale393b1c12014-10-18 16:22:01 -07002726
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002727 public static final Parcelable.Creator<LayoutParams> CREATOR
2728 = new Parcelable.Creator<LayoutParams>() {
2729 public LayoutParams createFromParcel(Parcel in) {
2730 return new LayoutParams(in);
2731 }
Wale Ogunwale393b1c12014-10-18 16:22:01 -07002732
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002733 public LayoutParams[] newArray(int size) {
2734 return new LayoutParams[size];
2735 }
2736 };
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002737
2738
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002739 public LayoutParams(Parcel in) {
2740 width = in.readInt();
2741 height = in.readInt();
2742 x = in.readInt();
2743 y = in.readInt();
2744 type = in.readInt();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002745 flags = in.readInt();
Dianne Hackborn5d927c22011-09-02 12:22:18 -07002746 privateFlags = in.readInt();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002747 softInputMode = in.readInt();
Adrian Roosfa02da62018-01-15 16:01:18 +01002748 layoutInDisplayCutoutMode = in.readInt();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002749 gravity = in.readInt();
2750 horizontalMargin = in.readFloat();
2751 verticalMargin = in.readFloat();
2752 format = in.readInt();
2753 windowAnimations = in.readInt();
2754 alpha = in.readFloat();
2755 dimAmount = in.readFloat();
2756 screenBrightness = in.readFloat();
Mike Lockwoodfb73f792009-11-20 11:31:18 -05002757 buttonBrightness = in.readFloat();
Craig Mautner3c174372013-02-21 17:54:37 -08002758 rotationAnimation = in.readInt();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002759 token = in.readStrongBinder();
2760 packageName = in.readString();
2761 mTitle = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(in);
2762 screenOrientation = in.readInt();
Michael Wright3f145a22014-07-22 19:46:03 -07002763 preferredRefreshRate = in.readFloat();
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002764 preferredDisplayModeId = in.readInt();
Joe Onorato664644d2011-01-23 17:53:23 -08002765 systemUiVisibility = in.readInt();
Joe Onorato14782f72011-01-25 19:53:17 -08002766 subtreeSystemUiVisibility = in.readInt();
Joe Onorato664644d2011-01-23 17:53:23 -08002767 hasSystemUiListeners = in.readInt() != 0;
Jeff Brown474dcb52011-06-14 20:22:50 -07002768 inputFeatures = in.readInt();
Jeff Brown1e3b98d2012-09-30 18:58:59 -07002769 userActivityTimeout = in.readLong();
Alan Viverette49a22e82014-07-12 20:01:27 -07002770 surfaceInsets.left = in.readInt();
2771 surfaceInsets.top = in.readInt();
2772 surfaceInsets.right = in.readInt();
2773 surfaceInsets.bottom = in.readInt();
Alan Viverette5435a302015-01-29 10:25:34 -08002774 hasManualSurfaceInsets = in.readInt() != 0;
Wale Ogunwale246c2092016-04-07 14:12:44 -07002775 preservePreviousSurfaceInsets = in.readInt() != 0;
Wale Ogunwale393b1c12014-10-18 16:22:01 -07002776 needsMenuKey = in.readInt();
Phil Weaver8583ae82018-02-13 11:01:24 -08002777 accessibilityIdOfAnchor = in.readLong();
Phil Weaver9be3c7b2016-04-07 15:15:41 -07002778 accessibilityTitle = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(in);
Romain Guy26a2b972017-04-17 09:39:51 -07002779 mColorMode = in.readInt();
Svetoslav Ganovaa076532016-08-01 19:16:43 -07002780 hideTimeoutMilliseconds = in.readLong();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002781 }
Wale Ogunwale393b1c12014-10-18 16:22:01 -07002782
Romain Guy72998072009-06-22 11:09:20 -07002783 @SuppressWarnings({"PointlessBitwiseExpression"})
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002784 public static final int LAYOUT_CHANGED = 1<<0;
2785 public static final int TYPE_CHANGED = 1<<1;
2786 public static final int FLAGS_CHANGED = 1<<2;
2787 public static final int FORMAT_CHANGED = 1<<3;
2788 public static final int ANIMATION_CHANGED = 1<<4;
2789 public static final int DIM_AMOUNT_CHANGED = 1<<5;
2790 public static final int TITLE_CHANGED = 1<<6;
2791 public static final int ALPHA_CHANGED = 1<<7;
2792 public static final int MEMORY_TYPE_CHANGED = 1<<8;
2793 public static final int SOFT_INPUT_MODE_CHANGED = 1<<9;
2794 public static final int SCREEN_ORIENTATION_CHANGED = 1<<10;
2795 public static final int SCREEN_BRIGHTNESS_CHANGED = 1<<11;
Craig Mautner3c174372013-02-21 17:54:37 -08002796 public static final int ROTATION_ANIMATION_CHANGED = 1<<12;
Mike Lockwoodfb73f792009-11-20 11:31:18 -05002797 /** {@hide} */
Craig Mautner3c174372013-02-21 17:54:37 -08002798 public static final int BUTTON_BRIGHTNESS_CHANGED = 1<<13;
Joe Onorato664644d2011-01-23 17:53:23 -08002799 /** {@hide} */
Craig Mautner3c174372013-02-21 17:54:37 -08002800 public static final int SYSTEM_UI_VISIBILITY_CHANGED = 1<<14;
Joe Onorato664644d2011-01-23 17:53:23 -08002801 /** {@hide} */
Craig Mautner3c174372013-02-21 17:54:37 -08002802 public static final int SYSTEM_UI_LISTENER_CHANGED = 1<<15;
Jeff Brown474dcb52011-06-14 20:22:50 -07002803 /** {@hide} */
Craig Mautner3c174372013-02-21 17:54:37 -08002804 public static final int INPUT_FEATURES_CHANGED = 1<<16;
Dianne Hackborn5d927c22011-09-02 12:22:18 -07002805 /** {@hide} */
Craig Mautner3c174372013-02-21 17:54:37 -08002806 public static final int PRIVATE_FLAGS_CHANGED = 1<<17;
Romain Guyf21c9b02011-09-06 16:56:54 -07002807 /** {@hide} */
Craig Mautner3c174372013-02-21 17:54:37 -08002808 public static final int USER_ACTIVITY_TIMEOUT_CHANGED = 1<<18;
Jeff Brown1e3b98d2012-09-30 18:58:59 -07002809 /** {@hide} */
John Spurlockbd957402013-10-03 11:38:39 -04002810 public static final int TRANSLUCENT_FLAGS_CHANGED = 1<<19;
2811 /** {@hide} */
Alan Viverette49a22e82014-07-12 20:01:27 -07002812 public static final int SURFACE_INSETS_CHANGED = 1<<20;
Alan Viveretteccb11e12014-07-08 16:04:02 -07002813 /** {@hide} */
Michael Wright3f145a22014-07-22 19:46:03 -07002814 public static final int PREFERRED_REFRESH_RATE_CHANGED = 1 << 21;
2815 /** {@hide} */
Wale Ogunwale393b1c12014-10-18 16:22:01 -07002816 public static final int NEEDS_MENU_KEY_CHANGED = 1 << 22;
2817 /** {@hide} */
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002818 public static final int PREFERRED_DISPLAY_MODE_ID = 1 << 23;
2819 /** {@hide} */
Phil Weaver396d5492016-03-22 17:53:50 -07002820 public static final int ACCESSIBILITY_ANCHOR_CHANGED = 1 << 24;
2821 /** {@hide} */
Alan Viverette39259dd2017-05-25 11:10:46 -04002822 @TestApi
Phil Weaver9be3c7b2016-04-07 15:15:41 -07002823 public static final int ACCESSIBILITY_TITLE_CHANGED = 1 << 25;
2824 /** {@hide} */
Romain Guy26a2b972017-04-17 09:39:51 -07002825 public static final int COLOR_MODE_CHANGED = 1 << 26;
2826 /** {@hide} */
Romain Guyf21c9b02011-09-06 16:56:54 -07002827 public static final int EVERYTHING_CHANGED = 0xffffffff;
2828
Mitsuru Oshimae5fb3282009-06-09 21:16:08 -07002829 // internal buffer to backup/restore parameters under compatibility mode.
2830 private int[] mCompatibilityParamsBackup = null;
Wale Ogunwale393b1c12014-10-18 16:22:01 -07002831
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002832 public final int copyFrom(LayoutParams o) {
2833 int changes = 0;
Wale Ogunwale393b1c12014-10-18 16:22:01 -07002834
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002835 if (width != o.width) {
2836 width = o.width;
Chet Haase40e03832011-10-06 08:34:13 -07002837 changes |= LAYOUT_CHANGED;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002838 }
2839 if (height != o.height) {
2840 height = o.height;
Chet Haase40e03832011-10-06 08:34:13 -07002841 changes |= LAYOUT_CHANGED;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002842 }
2843 if (x != o.x) {
2844 x = o.x;
2845 changes |= LAYOUT_CHANGED;
2846 }
2847 if (y != o.y) {
2848 y = o.y;
2849 changes |= LAYOUT_CHANGED;
2850 }
2851 if (horizontalWeight != o.horizontalWeight) {
2852 horizontalWeight = o.horizontalWeight;
Chet Haase40e03832011-10-06 08:34:13 -07002853 changes |= LAYOUT_CHANGED;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002854 }
2855 if (verticalWeight != o.verticalWeight) {
2856 verticalWeight = o.verticalWeight;
Chet Haase40e03832011-10-06 08:34:13 -07002857 changes |= LAYOUT_CHANGED;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002858 }
2859 if (horizontalMargin != o.horizontalMargin) {
2860 horizontalMargin = o.horizontalMargin;
Chet Haase40e03832011-10-06 08:34:13 -07002861 changes |= LAYOUT_CHANGED;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002862 }
2863 if (verticalMargin != o.verticalMargin) {
2864 verticalMargin = o.verticalMargin;
Chet Haase40e03832011-10-06 08:34:13 -07002865 changes |= LAYOUT_CHANGED;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002866 }
2867 if (type != o.type) {
2868 type = o.type;
2869 changes |= TYPE_CHANGED;
2870 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002871 if (flags != o.flags) {
John Spurlockbd957402013-10-03 11:38:39 -04002872 final int diff = flags ^ o.flags;
2873 if ((diff & (FLAG_TRANSLUCENT_STATUS | FLAG_TRANSLUCENT_NAVIGATION)) != 0) {
2874 changes |= TRANSLUCENT_FLAGS_CHANGED;
2875 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002876 flags = o.flags;
Chet Haase40e03832011-10-06 08:34:13 -07002877 changes |= FLAGS_CHANGED;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002878 }
Dianne Hackborn5d927c22011-09-02 12:22:18 -07002879 if (privateFlags != o.privateFlags) {
2880 privateFlags = o.privateFlags;
2881 changes |= PRIVATE_FLAGS_CHANGED;
2882 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002883 if (softInputMode != o.softInputMode) {
2884 softInputMode = o.softInputMode;
2885 changes |= SOFT_INPUT_MODE_CHANGED;
2886 }
Adrian Roosfa02da62018-01-15 16:01:18 +01002887 if (layoutInDisplayCutoutMode != o.layoutInDisplayCutoutMode) {
2888 layoutInDisplayCutoutMode = o.layoutInDisplayCutoutMode;
2889 changes |= LAYOUT_CHANGED;
2890 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002891 if (gravity != o.gravity) {
2892 gravity = o.gravity;
Chet Haase40e03832011-10-06 08:34:13 -07002893 changes |= LAYOUT_CHANGED;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002894 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002895 if (format != o.format) {
2896 format = o.format;
Chet Haase40e03832011-10-06 08:34:13 -07002897 changes |= FORMAT_CHANGED;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002898 }
2899 if (windowAnimations != o.windowAnimations) {
2900 windowAnimations = o.windowAnimations;
2901 changes |= ANIMATION_CHANGED;
2902 }
2903 if (token == null) {
2904 // NOTE: token only copied if the recipient doesn't
2905 // already have one.
2906 token = o.token;
2907 }
2908 if (packageName == null) {
2909 // NOTE: packageName only copied if the recipient doesn't
2910 // already have one.
2911 packageName = o.packageName;
2912 }
Wale Ogunwale1f240c92016-02-22 18:04:58 -08002913 if (!Objects.equals(mTitle, o.mTitle) && o.mTitle != null) {
Wale Ogunwaleb6e2ead2016-02-15 08:28:47 -08002914 // NOTE: mTitle only copied if the originator set one.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002915 mTitle = o.mTitle;
2916 changes |= TITLE_CHANGED;
2917 }
2918 if (alpha != o.alpha) {
2919 alpha = o.alpha;
2920 changes |= ALPHA_CHANGED;
2921 }
2922 if (dimAmount != o.dimAmount) {
2923 dimAmount = o.dimAmount;
2924 changes |= DIM_AMOUNT_CHANGED;
2925 }
2926 if (screenBrightness != o.screenBrightness) {
2927 screenBrightness = o.screenBrightness;
2928 changes |= SCREEN_BRIGHTNESS_CHANGED;
2929 }
Mike Lockwoodfb73f792009-11-20 11:31:18 -05002930 if (buttonBrightness != o.buttonBrightness) {
2931 buttonBrightness = o.buttonBrightness;
2932 changes |= BUTTON_BRIGHTNESS_CHANGED;
2933 }
Craig Mautner3c174372013-02-21 17:54:37 -08002934 if (rotationAnimation != o.rotationAnimation) {
2935 rotationAnimation = o.rotationAnimation;
2936 changes |= ROTATION_ANIMATION_CHANGED;
2937 }
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002938
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002939 if (screenOrientation != o.screenOrientation) {
2940 screenOrientation = o.screenOrientation;
Chet Haase40e03832011-10-06 08:34:13 -07002941 changes |= SCREEN_ORIENTATION_CHANGED;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002942 }
Romain Guy529b60a2010-08-03 18:05:47 -07002943
Michael Wright3f145a22014-07-22 19:46:03 -07002944 if (preferredRefreshRate != o.preferredRefreshRate) {
2945 preferredRefreshRate = o.preferredRefreshRate;
2946 changes |= PREFERRED_REFRESH_RATE_CHANGED;
2947 }
2948
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002949 if (preferredDisplayModeId != o.preferredDisplayModeId) {
2950 preferredDisplayModeId = o.preferredDisplayModeId;
2951 changes |= PREFERRED_DISPLAY_MODE_ID;
2952 }
2953
Joe Onorato14782f72011-01-25 19:53:17 -08002954 if (systemUiVisibility != o.systemUiVisibility
2955 || subtreeSystemUiVisibility != o.subtreeSystemUiVisibility) {
Joe Onorato664644d2011-01-23 17:53:23 -08002956 systemUiVisibility = o.systemUiVisibility;
Joe Onorato14782f72011-01-25 19:53:17 -08002957 subtreeSystemUiVisibility = o.subtreeSystemUiVisibility;
Joe Onorato664644d2011-01-23 17:53:23 -08002958 changes |= SYSTEM_UI_VISIBILITY_CHANGED;
2959 }
2960
2961 if (hasSystemUiListeners != o.hasSystemUiListeners) {
2962 hasSystemUiListeners = o.hasSystemUiListeners;
2963 changes |= SYSTEM_UI_LISTENER_CHANGED;
2964 }
2965
Jeff Brown474dcb52011-06-14 20:22:50 -07002966 if (inputFeatures != o.inputFeatures) {
2967 inputFeatures = o.inputFeatures;
2968 changes |= INPUT_FEATURES_CHANGED;
2969 }
2970
Jeff Brown1e3b98d2012-09-30 18:58:59 -07002971 if (userActivityTimeout != o.userActivityTimeout) {
2972 userActivityTimeout = o.userActivityTimeout;
2973 changes |= USER_ACTIVITY_TIMEOUT_CHANGED;
2974 }
2975
Alan Viverette49a22e82014-07-12 20:01:27 -07002976 if (!surfaceInsets.equals(o.surfaceInsets)) {
2977 surfaceInsets.set(o.surfaceInsets);
2978 changes |= SURFACE_INSETS_CHANGED;
Alan Viveretteccb11e12014-07-08 16:04:02 -07002979 }
2980
Alan Viverette5435a302015-01-29 10:25:34 -08002981 if (hasManualSurfaceInsets != o.hasManualSurfaceInsets) {
2982 hasManualSurfaceInsets = o.hasManualSurfaceInsets;
2983 changes |= SURFACE_INSETS_CHANGED;
2984 }
2985
Wale Ogunwale246c2092016-04-07 14:12:44 -07002986 if (preservePreviousSurfaceInsets != o.preservePreviousSurfaceInsets) {
2987 preservePreviousSurfaceInsets = o.preservePreviousSurfaceInsets;
2988 changes |= SURFACE_INSETS_CHANGED;
2989 }
2990
Wale Ogunwale393b1c12014-10-18 16:22:01 -07002991 if (needsMenuKey != o.needsMenuKey) {
2992 needsMenuKey = o.needsMenuKey;
2993 changes |= NEEDS_MENU_KEY_CHANGED;
2994 }
2995
Phil Weaver396d5492016-03-22 17:53:50 -07002996 if (accessibilityIdOfAnchor != o.accessibilityIdOfAnchor) {
2997 accessibilityIdOfAnchor = o.accessibilityIdOfAnchor;
2998 changes |= ACCESSIBILITY_ANCHOR_CHANGED;
2999 }
3000
Phil Weaver9be3c7b2016-04-07 15:15:41 -07003001 if (!Objects.equals(accessibilityTitle, o.accessibilityTitle)
3002 && o.accessibilityTitle != null) {
3003 // NOTE: accessibilityTitle only copied if the originator set one.
3004 accessibilityTitle = o.accessibilityTitle;
3005 changes |= ACCESSIBILITY_TITLE_CHANGED;
3006 }
3007
Romain Guy26a2b972017-04-17 09:39:51 -07003008 if (mColorMode != o.mColorMode) {
3009 mColorMode = o.mColorMode;
3010 changes |= COLOR_MODE_CHANGED;
3011 }
3012
Robert Carr70f0d222016-04-10 16:33:08 -07003013 // This can't change, it's only set at window creation time.
Svetoslav Ganovaa076532016-08-01 19:16:43 -07003014 hideTimeoutMilliseconds = o.hideTimeoutMilliseconds;
Robert Carr70f0d222016-04-10 16:33:08 -07003015
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003016 return changes;
3017 }
Wale Ogunwale393b1c12014-10-18 16:22:01 -07003018
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003019 @Override
3020 public String debug(String output) {
3021 output += "Contents of " + this + ":";
3022 Log.d("Debug", output);
3023 output = super.debug("");
3024 Log.d("Debug", output);
3025 Log.d("Debug", "");
3026 Log.d("Debug", "WindowManager.LayoutParams={title=" + mTitle + "}");
3027 return "";
3028 }
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07003029
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003030 @Override
3031 public String toString() {
Jorim Jaggi484851b2017-09-22 16:03:27 +02003032 return toString("");
3033 }
3034
3035 /**
3036 * @hide
3037 */
Felipe Lemeda9ea342018-03-22 15:19:51 -07003038 public void dumpDimensions(StringBuilder sb) {
3039 sb.append('(');
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003040 sb.append(x);
3041 sb.append(',');
3042 sb.append(y);
3043 sb.append(")(");
Romain Guy48327452017-01-23 17:03:35 -08003044 sb.append((width == MATCH_PARENT ? "fill" : (width == WRAP_CONTENT
3045 ? "wrap" : String.valueOf(width))));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003046 sb.append('x');
Romain Guy48327452017-01-23 17:03:35 -08003047 sb.append((height == MATCH_PARENT ? "fill" : (height == WRAP_CONTENT
3048 ? "wrap" : String.valueOf(height))));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003049 sb.append(")");
Felipe Lemeda9ea342018-03-22 15:19:51 -07003050 }
3051
3052 /**
3053 * @hide
3054 */
3055 public String toString(String prefix) {
3056 StringBuilder sb = new StringBuilder(256);
3057 sb.append('{');
3058 dumpDimensions(sb);
Dianne Hackborn8eb2e242010-11-01 12:31:24 -07003059 if (horizontalMargin != 0) {
3060 sb.append(" hm=");
3061 sb.append(horizontalMargin);
3062 }
3063 if (verticalMargin != 0) {
3064 sb.append(" vm=");
3065 sb.append(verticalMargin);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003066 }
3067 if (gravity != 0) {
Jorim Jaggi484851b2017-09-22 16:03:27 +02003068 sb.append(" gr=");
3069 sb.append(Gravity.toString(gravity));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003070 }
Dianne Hackborn8eb2e242010-11-01 12:31:24 -07003071 if (softInputMode != 0) {
Jorim Jaggi484851b2017-09-22 16:03:27 +02003072 sb.append(" sim={");
3073 sb.append(softInputModeToString(softInputMode));
3074 sb.append('}');
Dianne Hackborn8eb2e242010-11-01 12:31:24 -07003075 }
Adrian Roosfa02da62018-01-15 16:01:18 +01003076 if (layoutInDisplayCutoutMode != 0) {
3077 sb.append(" layoutInDisplayCutoutMode=");
3078 sb.append(layoutInDisplayCutoutModeToString(layoutInDisplayCutoutMode));
3079 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003080 sb.append(" ty=");
Jorim Jaggi484851b2017-09-22 16:03:27 +02003081 sb.append(ViewDebug.intToString(LayoutParams.class, "type", type));
Dianne Hackborna44abeb2011-08-08 19:24:01 -07003082 if (format != PixelFormat.OPAQUE) {
3083 sb.append(" fmt=");
Jorim Jaggi484851b2017-09-22 16:03:27 +02003084 sb.append(PixelFormat.formatToString(format));
Dianne Hackborna44abeb2011-08-08 19:24:01 -07003085 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003086 if (windowAnimations != 0) {
3087 sb.append(" wanim=0x");
3088 sb.append(Integer.toHexString(windowAnimations));
3089 }
3090 if (screenOrientation != ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED) {
3091 sb.append(" or=");
Jorim Jaggi484851b2017-09-22 16:03:27 +02003092 sb.append(ActivityInfo.screenOrientationToString(screenOrientation));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003093 }
Dianne Hackborn8eb2e242010-11-01 12:31:24 -07003094 if (alpha != 1.0f) {
3095 sb.append(" alpha=");
3096 sb.append(alpha);
3097 }
3098 if (screenBrightness != BRIGHTNESS_OVERRIDE_NONE) {
3099 sb.append(" sbrt=");
3100 sb.append(screenBrightness);
3101 }
3102 if (buttonBrightness != BRIGHTNESS_OVERRIDE_NONE) {
3103 sb.append(" bbrt=");
3104 sb.append(buttonBrightness);
3105 }
Craig Mautner3c174372013-02-21 17:54:37 -08003106 if (rotationAnimation != ROTATION_ANIMATION_ROTATE) {
3107 sb.append(" rotAnim=");
Jorim Jaggi484851b2017-09-22 16:03:27 +02003108 sb.append(rotationAnimationToString(rotationAnimation));
Craig Mautner3c174372013-02-21 17:54:37 -08003109 }
Michael Wright3f145a22014-07-22 19:46:03 -07003110 if (preferredRefreshRate != 0) {
3111 sb.append(" preferredRefreshRate=");
3112 sb.append(preferredRefreshRate);
3113 }
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07003114 if (preferredDisplayModeId != 0) {
3115 sb.append(" preferredDisplayMode=");
3116 sb.append(preferredDisplayModeId);
3117 }
Joe Onorato664644d2011-01-23 17:53:23 -08003118 if (hasSystemUiListeners) {
3119 sb.append(" sysuil=");
3120 sb.append(hasSystemUiListeners);
3121 }
Dianne Hackborna44abeb2011-08-08 19:24:01 -07003122 if (inputFeatures != 0) {
Jorim Jaggi484851b2017-09-22 16:03:27 +02003123 sb.append(" if=").append(inputFeatureToString(inputFeatures));
Dianne Hackborna44abeb2011-08-08 19:24:01 -07003124 }
Jeff Brown1e3b98d2012-09-30 18:58:59 -07003125 if (userActivityTimeout >= 0) {
3126 sb.append(" userActivityTimeout=").append(userActivityTimeout);
3127 }
Andreas Gampe007cfa72015-03-15 14:19:43 -07003128 if (surfaceInsets.left != 0 || surfaceInsets.top != 0 || surfaceInsets.right != 0 ||
Wale Ogunwale246c2092016-04-07 14:12:44 -07003129 surfaceInsets.bottom != 0 || hasManualSurfaceInsets
3130 || !preservePreviousSurfaceInsets) {
Alan Viverette49a22e82014-07-12 20:01:27 -07003131 sb.append(" surfaceInsets=").append(surfaceInsets);
Alan Viverette5435a302015-01-29 10:25:34 -08003132 if (hasManualSurfaceInsets) {
3133 sb.append(" (manual)");
3134 }
Wale Ogunwale246c2092016-04-07 14:12:44 -07003135 if (!preservePreviousSurfaceInsets) {
3136 sb.append(" (!preservePreviousSurfaceInsets)");
3137 }
Alan Viveretteccb11e12014-07-08 16:04:02 -07003138 }
Jorim Jaggi484851b2017-09-22 16:03:27 +02003139 if (needsMenuKey == NEEDS_MENU_SET_TRUE) {
3140 sb.append(" needsMenuKey");
Wale Ogunwale393b1c12014-10-18 16:22:01 -07003141 }
Jorim Jaggi484851b2017-09-22 16:03:27 +02003142 if (mColorMode != COLOR_MODE_DEFAULT) {
3143 sb.append(" colorMode=").append(ActivityInfo.colorModeToString(mColorMode));
3144 }
3145 sb.append(System.lineSeparator());
3146 sb.append(prefix).append(" fl=").append(
3147 ViewDebug.flagsToString(LayoutParams.class, "flags", flags));
3148 if (privateFlags != 0) {
3149 sb.append(System.lineSeparator());
3150 sb.append(prefix).append(" pfl=").append(ViewDebug.flagsToString(
3151 LayoutParams.class, "privateFlags", privateFlags));
3152 }
3153 if (systemUiVisibility != 0) {
3154 sb.append(System.lineSeparator());
3155 sb.append(prefix).append(" sysui=").append(ViewDebug.flagsToString(
3156 View.class, "mSystemUiVisibility", systemUiVisibility));
3157 }
3158 if (subtreeSystemUiVisibility != 0) {
3159 sb.append(System.lineSeparator());
3160 sb.append(prefix).append(" vsysui=").append(ViewDebug.flagsToString(
3161 View.class, "mSystemUiVisibility", subtreeSystemUiVisibility));
3162 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003163 sb.append('}');
3164 return sb.toString();
3165 }
Mitsuru Oshima8d112672009-04-27 12:01:23 -07003166
Mitsuru Oshima3d914922009-05-13 22:29:15 -07003167 /**
Steven Timotiusaf03df62017-07-18 16:56:43 -07003168 * @hide
3169 */
3170 public void writeToProto(ProtoOutputStream proto, long fieldId) {
3171 final long token = proto.start(fieldId);
Vishnu Nair1d0fa072018-01-04 07:53:00 -08003172 proto.write(TYPE, type);
3173 proto.write(X, x);
3174 proto.write(Y, y);
3175 proto.write(WIDTH, width);
3176 proto.write(HEIGHT, height);
3177 proto.write(HORIZONTAL_MARGIN, horizontalMargin);
3178 proto.write(VERTICAL_MARGIN, verticalMargin);
3179 proto.write(GRAVITY, gravity);
3180 proto.write(SOFT_INPUT_MODE, softInputMode);
3181 proto.write(FORMAT, format);
3182 proto.write(WINDOW_ANIMATIONS, windowAnimations);
3183 proto.write(ALPHA, alpha);
3184 proto.write(SCREEN_BRIGHTNESS, screenBrightness);
3185 proto.write(BUTTON_BRIGHTNESS, buttonBrightness);
3186 proto.write(ROTATION_ANIMATION, rotationAnimation);
3187 proto.write(PREFERRED_REFRESH_RATE, preferredRefreshRate);
3188 proto.write(WindowLayoutParamsProto.PREFERRED_DISPLAY_MODE_ID, preferredDisplayModeId);
3189 proto.write(HAS_SYSTEM_UI_LISTENERS, hasSystemUiListeners);
3190 proto.write(INPUT_FEATURE_FLAGS, inputFeatures);
3191 proto.write(USER_ACTIVITY_TIMEOUT, userActivityTimeout);
3192 proto.write(NEEDS_MENU_KEY, needsMenuKey);
3193 proto.write(COLOR_MODE, mColorMode);
3194 proto.write(FLAGS, flags);
Vishnu Nair1d0fa072018-01-04 07:53:00 -08003195 proto.write(PRIVATE_FLAGS, privateFlags);
3196 proto.write(SYSTEM_UI_VISIBILITY_FLAGS, systemUiVisibility);
3197 proto.write(SUBTREE_SYSTEM_UI_VISIBILITY_FLAGS, subtreeSystemUiVisibility);
Steven Timotiusaf03df62017-07-18 16:56:43 -07003198 proto.end(token);
3199 }
3200
3201 /**
Mitsuru Oshima3d914922009-05-13 22:29:15 -07003202 * Scale the layout params' coordinates and size.
Mitsuru Oshima64f59342009-06-21 00:03:11 -07003203 * @hide
Mitsuru Oshima3d914922009-05-13 22:29:15 -07003204 */
Mitsuru Oshima64f59342009-06-21 00:03:11 -07003205 public void scale(float scale) {
Mitsuru Oshima61324e52009-07-21 15:40:36 -07003206 x = (int) (x * scale + 0.5f);
3207 y = (int) (y * scale + 0.5f);
Mitsuru Oshimae5fb3282009-06-09 21:16:08 -07003208 if (width > 0) {
Mitsuru Oshima61324e52009-07-21 15:40:36 -07003209 width = (int) (width * scale + 0.5f);
Mitsuru Oshimae5fb3282009-06-09 21:16:08 -07003210 }
3211 if (height > 0) {
Mitsuru Oshima61324e52009-07-21 15:40:36 -07003212 height = (int) (height * scale + 0.5f);
Mitsuru Oshima8d112672009-04-27 12:01:23 -07003213 }
3214 }
3215
Mitsuru Oshima3d914922009-05-13 22:29:15 -07003216 /**
Mitsuru Oshimae5fb3282009-06-09 21:16:08 -07003217 * Backup the layout parameters used in compatibility mode.
3218 * @see LayoutParams#restore()
Mitsuru Oshima3d914922009-05-13 22:29:15 -07003219 */
Mathew Inwooda570dee2018-08-17 14:56:00 +01003220 @UnsupportedAppUsage
Mitsuru Oshimae5fb3282009-06-09 21:16:08 -07003221 void backup() {
3222 int[] backup = mCompatibilityParamsBackup;
3223 if (backup == null) {
Mitsuru Oshima64f59342009-06-21 00:03:11 -07003224 // we backup 4 elements, x, y, width, height
3225 backup = mCompatibilityParamsBackup = new int[4];
Mitsuru Oshima3d914922009-05-13 22:29:15 -07003226 }
Mitsuru Oshimae5fb3282009-06-09 21:16:08 -07003227 backup[0] = x;
3228 backup[1] = y;
3229 backup[2] = width;
3230 backup[3] = height;
Mitsuru Oshimae5fb3282009-06-09 21:16:08 -07003231 }
3232
3233 /**
3234 * Restore the layout params' coordinates, size and gravity
3235 * @see LayoutParams#backup()
3236 */
Mathew Inwooda570dee2018-08-17 14:56:00 +01003237 @UnsupportedAppUsage
Mitsuru Oshimae5fb3282009-06-09 21:16:08 -07003238 void restore() {
3239 int[] backup = mCompatibilityParamsBackup;
3240 if (backup != null) {
3241 x = backup[0];
3242 y = backup[1];
3243 width = backup[2];
Mitsuru Oshima3d914922009-05-13 22:29:15 -07003244 height = backup[3];
3245 }
3246 }
3247
Wale Ogunwaleb6e2ead2016-02-15 08:28:47 -08003248 private CharSequence mTitle = null;
Siva Velusamy0d857b92015-04-22 10:23:56 -07003249
3250 /** @hide */
3251 @Override
3252 protected void encodeProperties(@NonNull ViewHierarchyEncoder encoder) {
3253 super.encodeProperties(encoder);
3254
3255 encoder.addProperty("x", x);
3256 encoder.addProperty("y", y);
3257 encoder.addProperty("horizontalWeight", horizontalWeight);
3258 encoder.addProperty("verticalWeight", verticalWeight);
3259 encoder.addProperty("type", type);
3260 encoder.addProperty("flags", flags);
3261 }
Jorim Jaggie6c6ecb2017-07-20 18:09:20 +02003262
3263 /**
3264 * @hide
3265 * @return True if the layout parameters will cause the window to cover the full screen;
3266 * false otherwise.
3267 */
3268 public boolean isFullscreen() {
3269 return x == 0 && y == 0
3270 && width == WindowManager.LayoutParams.MATCH_PARENT
3271 && height == WindowManager.LayoutParams.MATCH_PARENT;
3272 }
Jorim Jaggi484851b2017-09-22 16:03:27 +02003273
Adrian Roosfa02da62018-01-15 16:01:18 +01003274 private static String layoutInDisplayCutoutModeToString(
3275 @LayoutInDisplayCutoutMode int mode) {
3276 switch (mode) {
3277 case LAYOUT_IN_DISPLAY_CUTOUT_MODE_DEFAULT:
3278 return "default";
3279 case LAYOUT_IN_DISPLAY_CUTOUT_MODE_ALWAYS:
3280 return "always";
3281 case LAYOUT_IN_DISPLAY_CUTOUT_MODE_NEVER:
3282 return "never";
3283 default:
3284 return "unknown(" + mode + ")";
3285 }
3286 }
3287
Jorim Jaggi484851b2017-09-22 16:03:27 +02003288 private static String softInputModeToString(@SoftInputModeFlags int softInputMode) {
3289 final StringBuilder result = new StringBuilder();
3290 final int state = softInputMode & SOFT_INPUT_MASK_STATE;
3291 if (state != 0) {
3292 result.append("state=");
3293 switch (state) {
3294 case SOFT_INPUT_STATE_UNCHANGED:
3295 result.append("unchanged");
3296 break;
3297 case SOFT_INPUT_STATE_HIDDEN:
3298 result.append("hidden");
3299 break;
3300 case SOFT_INPUT_STATE_ALWAYS_HIDDEN:
3301 result.append("always_hidden");
3302 break;
3303 case SOFT_INPUT_STATE_VISIBLE:
3304 result.append("visible");
3305 break;
3306 case SOFT_INPUT_STATE_ALWAYS_VISIBLE:
3307 result.append("always_visible");
3308 break;
3309 default:
3310 result.append(state);
3311 break;
3312 }
3313 result.append(' ');
3314 }
3315 final int adjust = softInputMode & SOFT_INPUT_MASK_ADJUST;
3316 if (adjust != 0) {
3317 result.append("adjust=");
3318 switch (adjust) {
3319 case SOFT_INPUT_ADJUST_RESIZE:
3320 result.append("resize");
3321 break;
3322 case SOFT_INPUT_ADJUST_PAN:
3323 result.append("pan");
3324 break;
3325 case SOFT_INPUT_ADJUST_NOTHING:
3326 result.append("nothing");
3327 break;
3328 default:
3329 result.append(adjust);
3330 break;
3331 }
3332 result.append(' ');
3333 }
3334 if ((softInputMode & SOFT_INPUT_IS_FORWARD_NAVIGATION) != 0) {
3335 result.append("forwardNavigation").append(' ');
3336 }
3337 result.deleteCharAt(result.length() - 1);
3338 return result.toString();
3339 }
3340
3341 private static String rotationAnimationToString(int rotationAnimation) {
3342 switch (rotationAnimation) {
3343 case ROTATION_ANIMATION_UNSPECIFIED:
3344 return "UNSPECIFIED";
3345 case ROTATION_ANIMATION_ROTATE:
3346 return "ROTATE";
3347 case ROTATION_ANIMATION_CROSSFADE:
3348 return "CROSSFADE";
3349 case ROTATION_ANIMATION_JUMPCUT:
3350 return "JUMPCUT";
3351 case ROTATION_ANIMATION_SEAMLESS:
3352 return "SEAMLESS";
3353 default:
3354 return Integer.toString(rotationAnimation);
3355 }
3356 }
3357
3358 private static String inputFeatureToString(int inputFeature) {
3359 switch (inputFeature) {
3360 case INPUT_FEATURE_DISABLE_POINTER_GESTURES:
3361 return "DISABLE_POINTER_GESTURES";
3362 case INPUT_FEATURE_NO_INPUT_CHANNEL:
3363 return "NO_INPUT_CHANNEL";
3364 case INPUT_FEATURE_DISABLE_USER_ACTIVITY:
3365 return "DISABLE_USER_ACTIVITY";
3366 default:
3367 return Integer.toString(inputFeature);
3368 }
3369 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003370 }
3371}