blob: 450de6d8c2339bd928df2ab21a54320cf20ce75e [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 /**
Issei Suzukicac2a502019-04-16 16:52:50 +0200264 * A display which can only contain one task is being shown because the first activity is
265 * started or it's being turned on.
266 * @hide
267 */
268 int TRANSIT_SHOW_SINGLE_TASK_DISPLAY = 28;
269
270 /**
Jorim Jaggif84e2f62018-01-16 14:17:59 +0100271 * @hide
272 */
273 @IntDef(prefix = { "TRANSIT_" }, value = {
274 TRANSIT_UNSET,
275 TRANSIT_NONE,
276 TRANSIT_ACTIVITY_OPEN,
277 TRANSIT_ACTIVITY_CLOSE,
278 TRANSIT_TASK_OPEN,
279 TRANSIT_TASK_CLOSE,
280 TRANSIT_TASK_TO_FRONT,
281 TRANSIT_TASK_TO_BACK,
282 TRANSIT_WALLPAPER_CLOSE,
283 TRANSIT_WALLPAPER_OPEN,
284 TRANSIT_WALLPAPER_INTRA_OPEN,
285 TRANSIT_WALLPAPER_INTRA_CLOSE,
286 TRANSIT_TASK_OPEN_BEHIND,
287 TRANSIT_TASK_IN_PLACE,
288 TRANSIT_ACTIVITY_RELAUNCH,
289 TRANSIT_DOCK_TASK_FROM_RECENTS,
290 TRANSIT_KEYGUARD_GOING_AWAY,
291 TRANSIT_KEYGUARD_GOING_AWAY_ON_WALLPAPER,
292 TRANSIT_KEYGUARD_OCCLUDE,
Jorim Jaggi98a9d202018-03-26 16:17:07 +0200293 TRANSIT_KEYGUARD_UNOCCLUDE,
294 TRANSIT_TRANSLUCENT_ACTIVITY_OPEN,
Jorim Jaggi9c52ebb2018-06-01 14:45:24 +0200295 TRANSIT_TRANSLUCENT_ACTIVITY_CLOSE,
Evan Rosky2289ba12018-11-19 18:28:18 -0800296 TRANSIT_CRASHING_ACTIVITY_CLOSE,
Issei Suzukicac2a502019-04-16 16:52:50 +0200297 TRANSIT_TASK_CHANGE_WINDOWING_MODE,
298 TRANSIT_SHOW_SINGLE_TASK_DISPLAY
Jorim Jaggif84e2f62018-01-16 14:17:59 +0100299 })
300 @Retention(RetentionPolicy.SOURCE)
301 @interface TransitionType {}
302
303 /**
304 * Transition flag: Keyguard is going away, but keeping the notification shade open
305 * @hide
306 */
307 int TRANSIT_FLAG_KEYGUARD_GOING_AWAY_TO_SHADE = 0x1;
308
309 /**
310 * Transition flag: Keyguard is going away, but doesn't want an animation for it
311 * @hide
312 */
313 int TRANSIT_FLAG_KEYGUARD_GOING_AWAY_NO_ANIMATION = 0x2;
314
315 /**
316 * Transition flag: Keyguard is going away while it was showing the system wallpaper.
317 * @hide
318 */
319 int TRANSIT_FLAG_KEYGUARD_GOING_AWAY_WITH_WALLPAPER = 0x4;
320
321 /**
Issei Suzuki5609ccb2019-06-13 15:04:08 +0200322 * Transition flag: Keyguard is going away with subtle animation.
323 * @hide
324 */
325 int TRANSIT_FLAG_KEYGUARD_GOING_AWAY_SUBTLE_ANIMATION = 0x8;
326
327 /**
Jorim Jaggif84e2f62018-01-16 14:17:59 +0100328 * @hide
329 */
330 @IntDef(flag = true, prefix = { "TRANSIT_FLAG_" }, value = {
331 TRANSIT_FLAG_KEYGUARD_GOING_AWAY_TO_SHADE,
332 TRANSIT_FLAG_KEYGUARD_GOING_AWAY_NO_ANIMATION,
333 TRANSIT_FLAG_KEYGUARD_GOING_AWAY_WITH_WALLPAPER,
334 })
335 @Retention(RetentionPolicy.SOURCE)
336 @interface TransitionFlags {}
337
338 /**
Chilun8753ad32018-10-09 15:56:45 +0800339 * Remove content mode: Indicates remove content mode is currently not defined.
340 * @hide
341 */
342 int REMOVE_CONTENT_MODE_UNDEFINED = 0;
343
344 /**
345 * Remove content mode: Indicates that when display is removed, all its activities will be moved
346 * to the primary display and the topmost activity should become focused.
347 * @hide
348 */
349 int REMOVE_CONTENT_MODE_MOVE_TO_PRIMARY = 1;
350
351 /**
352 * Remove content mode: Indicates that when display is removed, all its stacks and tasks will be
353 * removed, all activities will be destroyed according to the usual lifecycle.
354 * @hide
355 */
356 int REMOVE_CONTENT_MODE_DESTROY = 2;
357
358 /**
359 * @hide
360 */
361 @IntDef(prefix = { "REMOVE_CONTENT_MODE_" }, value = {
362 REMOVE_CONTENT_MODE_UNDEFINED,
363 REMOVE_CONTENT_MODE_MOVE_TO_PRIMARY,
364 REMOVE_CONTENT_MODE_DESTROY,
365 })
366 @interface RemoveContentMode {}
367
368 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800369 * Exception that is thrown when trying to add view whose
Jorim Jaggi380ecb82014-03-14 17:25:20 +0100370 * {@link LayoutParams} {@link LayoutParams#token}
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800371 * is invalid.
372 */
373 public static class BadTokenException extends RuntimeException {
374 public BadTokenException() {
375 }
376
377 public BadTokenException(String name) {
378 super(name);
379 }
380 }
381
382 /**
Craig Mautner6018aee2012-10-23 14:27:49 -0700383 * Exception that is thrown when calling {@link #addView} to a secondary display that cannot
384 * be found. See {@link android.app.Presentation} for more information on secondary displays.
385 */
386 public static class InvalidDisplayException extends RuntimeException {
387 public InvalidDisplayException() {
388 }
389
390 public InvalidDisplayException(String name) {
391 super(name);
392 }
393 }
394
395 /**
Jeff Browna492c3a2012-08-23 19:48:44 -0700396 * Returns the {@link Display} upon which this {@link WindowManager} instance
397 * will create new windows.
398 * <p>
399 * Despite the name of this method, the display that is returned is not
400 * necessarily the primary display of the system (see {@link Display#DEFAULT_DISPLAY}).
401 * The returned display could instead be a secondary display that this
402 * window manager instance is managing. Think of it as the display that
403 * this {@link WindowManager} instance uses by default.
404 * </p><p>
405 * To create windows on a different display, you need to obtain a
406 * {@link WindowManager} for that {@link Display}. (See the {@link WindowManager}
407 * class documentation for more information.)
408 * </p>
409 *
410 * @return The display that this window manager is managing.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800411 */
412 public Display getDefaultDisplay();
Jeff Browna492c3a2012-08-23 19:48:44 -0700413
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800414 /**
415 * Special variation of {@link #removeView} that immediately invokes
416 * the given view hierarchy's {@link View#onDetachedFromWindow()
417 * View.onDetachedFromWindow()} methods before returning. This is not
418 * for normal applications; using it correctly requires great care.
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -0700419 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800420 * @param view The view to be removed.
421 */
422 public void removeViewImmediate(View view);
Jeff Brownd32460c2012-07-20 16:15:36 -0700423
Clara Bayarri75e09792015-07-29 16:20:40 +0100424 /**
425 * Used to asynchronously request Keyboard Shortcuts from the focused window.
426 *
427 * @hide
428 */
429 public interface KeyboardShortcutsReceiver {
430 /**
431 * Callback used when the focused window keyboard shortcuts are ready to be displayed.
432 *
433 * @param result The keyboard shortcuts to be displayed.
434 */
435 void onKeyboardShortcutsReceived(List<KeyboardShortcutGroup> result);
436 }
437
438 /**
Muyuan Li6ca619f2016-03-08 13:30:42 -0800439 * Message for taking fullscreen screenshot
440 * @hide
441 */
442 final int TAKE_SCREENSHOT_FULLSCREEN = 1;
443
444 /**
445 * Message for taking screenshot of selected region.
446 * @hide
447 */
448 final int TAKE_SCREENSHOT_SELECTED_REGION = 2;
449
450 /**
Clara Bayarri75e09792015-07-29 16:20:40 +0100451 * @hide
452 */
453 public static final String PARCEL_KEY_SHORTCUTS_ARRAY = "shortcuts_array";
454
455 /**
456 * Request for keyboard shortcuts to be retrieved asynchronously.
457 *
458 * @param receiver The callback to be triggered when the result is ready.
459 *
460 * @hide
461 */
Clara Bayarrifcd7e802016-03-10 12:58:18 +0000462 public void requestAppKeyboardShortcuts(final KeyboardShortcutsReceiver receiver, int deviceId);
Clara Bayarri75e09792015-07-29 16:20:40 +0100463
Albert Chaulk2ccb0b72017-06-20 14:39:29 -0400464 /**
465 * Return the touch region for the current IME window, or an empty region if there is none.
466 *
467 * @return The region of the IME that is accepting touch inputs, or null if there is no IME, no
468 * region or there was an error.
469 *
470 * @hide
471 */
472 @SystemApi
473 @RequiresPermission(android.Manifest.permission.RESTRICTED_VR_ACCESS)
474 public Region getCurrentImeTouchRegion();
475
Chilun8753ad32018-10-09 15:56:45 +0800476 /**
477 * Sets that the display should show its content when non-secure keyguard is shown.
478 *
479 * @param displayId Display ID.
480 * @param shouldShow Indicates that the display should show its content when non-secure keyguard
481 * is shown.
482 * @see KeyguardManager#isDeviceSecure()
483 * @see KeyguardManager#isDeviceLocked()
484 * @hide
485 */
486 @TestApi
487 default void setShouldShowWithInsecureKeyguard(int displayId, boolean shouldShow) {
488 }
489
490 /**
491 * Sets that the display should show system decors.
492 * <p>
493 * System decors include status bar, navigation bar, launcher.
494 * </p>
495 *
496 * @param displayId The id of the display.
497 * @param shouldShow Indicates that the display should show system decors.
Andrii Kuliandd989612019-02-21 12:13:28 -0800498 * @see #shouldShowSystemDecors(int)
Chilun8753ad32018-10-09 15:56:45 +0800499 * @hide
500 */
501 @TestApi
502 default void setShouldShowSystemDecors(int displayId, boolean shouldShow) {
503 }
504
505 /**
Andrii Kuliandd989612019-02-21 12:13:28 -0800506 * Checks if the display supports showing system decors.
507 * <p>
508 * System decors include status bar, navigation bar, launcher.
509 * </p>
510 *
511 * @param displayId The id of the display.
512 * @see #setShouldShowSystemDecors(int, boolean)
513 * @hide
514 */
515 @TestApi
516 default boolean shouldShowSystemDecors(int displayId) {
517 return false;
518 }
519
520 /**
Chilun8753ad32018-10-09 15:56:45 +0800521 * Sets that the display should show IME.
522 *
523 * @param displayId Display ID.
524 * @param shouldShow Indicates that the display should show IME.
Chilun8753ad32018-10-09 15:56:45 +0800525 * @hide
526 */
527 @TestApi
528 default void setShouldShowIme(int displayId, boolean shouldShow) {
529 }
530
lumark9a72d222019-03-30 18:31:45 +0800531 /**
532 * Indicates that the display should show IME.
533 *
534 * @param displayId The id of the display.
535 * @return {@code true} if the display should show IME when an input field becomes
536 * focused on it.
537 * @hide
538 */
539 @TestApi
540 default boolean shouldShowIme(int displayId) {
541 return false;
542 }
543
Filip Gruszczynski1a4dfe52015-11-15 10:58:57 -0800544 public static class LayoutParams extends ViewGroup.LayoutParams implements Parcelable {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800545 /**
546 * X position for this window. With the default gravity it is ignored.
Fabrice Di Meglio9e3b0022011-06-06 16:30:29 -0700547 * When using {@link Gravity#LEFT} or {@link Gravity#START} or {@link Gravity#RIGHT} or
548 * {@link Gravity#END} it provides an offset from the given edge.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800549 */
Romain Guy529b60a2010-08-03 18:05:47 -0700550 @ViewDebug.ExportedProperty
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800551 public int x;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -0700552
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800553 /**
554 * Y position for this window. With the default gravity it is ignored.
555 * When using {@link Gravity#TOP} or {@link Gravity#BOTTOM} it provides
556 * an offset from the given edge.
557 */
Romain Guy529b60a2010-08-03 18:05:47 -0700558 @ViewDebug.ExportedProperty
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800559 public int y;
560
561 /**
562 * Indicates how much of the extra space will be allocated horizontally
563 * to the view associated with these LayoutParams. Specify 0 if the view
564 * should not be stretched. Otherwise the extra pixels will be pro-rated
565 * among all views whose weight is greater than 0.
566 */
Romain Guy529b60a2010-08-03 18:05:47 -0700567 @ViewDebug.ExportedProperty
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800568 public float horizontalWeight;
569
570 /**
571 * Indicates how much of the extra space will be allocated vertically
572 * to the view associated with these LayoutParams. Specify 0 if the view
573 * should not be stretched. Otherwise the extra pixels will be pro-rated
574 * among all views whose weight is greater than 0.
575 */
Romain Guy529b60a2010-08-03 18:05:47 -0700576 @ViewDebug.ExportedProperty
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800577 public float verticalWeight;
Romain Guy529b60a2010-08-03 18:05:47 -0700578
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800579 /**
580 * The general type of window. There are three main classes of
581 * window types:
582 * <ul>
583 * <li> <strong>Application windows</strong> (ranging from
584 * {@link #FIRST_APPLICATION_WINDOW} to
585 * {@link #LAST_APPLICATION_WINDOW}) are normal top-level application
586 * windows. For these types of windows, the {@link #token} must be
587 * set to the token of the activity they are a part of (this will
588 * normally be done for you if {@link #token} is null).
589 * <li> <strong>Sub-windows</strong> (ranging from
590 * {@link #FIRST_SUB_WINDOW} to
591 * {@link #LAST_SUB_WINDOW}) are associated with another top-level
592 * window. For these types of windows, the {@link #token} must be
593 * the token of the window it is attached to.
594 * <li> <strong>System windows</strong> (ranging from
595 * {@link #FIRST_SYSTEM_WINDOW} to
596 * {@link #LAST_SYSTEM_WINDOW}) are special types of windows for
597 * use by the system for specific purposes. They should not normally
598 * be used by applications, and a special permission is required
599 * to use them.
600 * </ul>
Wale Ogunwale0a4dc222015-04-14 12:58:42 -0700601 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800602 * @see #TYPE_BASE_APPLICATION
603 * @see #TYPE_APPLICATION
604 * @see #TYPE_APPLICATION_STARTING
Chong Zhangfea963e2016-08-15 17:14:16 -0700605 * @see #TYPE_DRAWN_APPLICATION
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800606 * @see #TYPE_APPLICATION_PANEL
607 * @see #TYPE_APPLICATION_MEDIA
608 * @see #TYPE_APPLICATION_SUB_PANEL
609 * @see #TYPE_APPLICATION_ATTACHED_DIALOG
610 * @see #TYPE_STATUS_BAR
611 * @see #TYPE_SEARCH_BAR
612 * @see #TYPE_PHONE
613 * @see #TYPE_SYSTEM_ALERT
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800614 * @see #TYPE_TOAST
615 * @see #TYPE_SYSTEM_OVERLAY
616 * @see #TYPE_PRIORITY_PHONE
617 * @see #TYPE_STATUS_BAR_PANEL
618 * @see #TYPE_SYSTEM_DIALOG
619 * @see #TYPE_KEYGUARD_DIALOG
620 * @see #TYPE_SYSTEM_ERROR
621 * @see #TYPE_INPUT_METHOD
622 * @see #TYPE_INPUT_METHOD_DIALOG
623 */
Joe Onorato8f2bd432010-03-25 11:45:28 -0700624 @ViewDebug.ExportedProperty(mapping = {
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700625 @ViewDebug.IntToString(from = TYPE_BASE_APPLICATION,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200626 to = "BASE_APPLICATION"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700627 @ViewDebug.IntToString(from = TYPE_APPLICATION,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200628 to = "APPLICATION"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700629 @ViewDebug.IntToString(from = TYPE_APPLICATION_STARTING,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200630 to = "APPLICATION_STARTING"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700631 @ViewDebug.IntToString(from = TYPE_DRAWN_APPLICATION,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200632 to = "DRAWN_APPLICATION"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700633 @ViewDebug.IntToString(from = TYPE_APPLICATION_PANEL,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200634 to = "APPLICATION_PANEL"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700635 @ViewDebug.IntToString(from = TYPE_APPLICATION_MEDIA,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200636 to = "APPLICATION_MEDIA"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700637 @ViewDebug.IntToString(from = TYPE_APPLICATION_SUB_PANEL,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200638 to = "APPLICATION_SUB_PANEL"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700639 @ViewDebug.IntToString(from = TYPE_APPLICATION_ABOVE_SUB_PANEL,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200640 to = "APPLICATION_ABOVE_SUB_PANEL"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700641 @ViewDebug.IntToString(from = TYPE_APPLICATION_ATTACHED_DIALOG,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200642 to = "APPLICATION_ATTACHED_DIALOG"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700643 @ViewDebug.IntToString(from = TYPE_APPLICATION_MEDIA_OVERLAY,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200644 to = "APPLICATION_MEDIA_OVERLAY"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700645 @ViewDebug.IntToString(from = TYPE_STATUS_BAR,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200646 to = "STATUS_BAR"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700647 @ViewDebug.IntToString(from = TYPE_SEARCH_BAR,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200648 to = "SEARCH_BAR"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700649 @ViewDebug.IntToString(from = TYPE_PHONE,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200650 to = "PHONE"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700651 @ViewDebug.IntToString(from = TYPE_SYSTEM_ALERT,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200652 to = "SYSTEM_ALERT"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700653 @ViewDebug.IntToString(from = TYPE_TOAST,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200654 to = "TOAST"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700655 @ViewDebug.IntToString(from = TYPE_SYSTEM_OVERLAY,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200656 to = "SYSTEM_OVERLAY"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700657 @ViewDebug.IntToString(from = TYPE_PRIORITY_PHONE,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200658 to = "PRIORITY_PHONE"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700659 @ViewDebug.IntToString(from = TYPE_SYSTEM_DIALOG,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200660 to = "SYSTEM_DIALOG"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700661 @ViewDebug.IntToString(from = TYPE_KEYGUARD_DIALOG,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200662 to = "KEYGUARD_DIALOG"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700663 @ViewDebug.IntToString(from = TYPE_SYSTEM_ERROR,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200664 to = "SYSTEM_ERROR"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700665 @ViewDebug.IntToString(from = TYPE_INPUT_METHOD,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200666 to = "INPUT_METHOD"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700667 @ViewDebug.IntToString(from = TYPE_INPUT_METHOD_DIALOG,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200668 to = "INPUT_METHOD_DIALOG"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700669 @ViewDebug.IntToString(from = TYPE_WALLPAPER,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200670 to = "WALLPAPER"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700671 @ViewDebug.IntToString(from = TYPE_STATUS_BAR_PANEL,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200672 to = "STATUS_BAR_PANEL"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700673 @ViewDebug.IntToString(from = TYPE_SECURE_SYSTEM_OVERLAY,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200674 to = "SECURE_SYSTEM_OVERLAY"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700675 @ViewDebug.IntToString(from = TYPE_DRAG,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200676 to = "DRAG"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700677 @ViewDebug.IntToString(from = TYPE_STATUS_BAR_SUB_PANEL,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200678 to = "STATUS_BAR_SUB_PANEL"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700679 @ViewDebug.IntToString(from = TYPE_POINTER,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200680 to = "POINTER"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700681 @ViewDebug.IntToString(from = TYPE_NAVIGATION_BAR,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200682 to = "NAVIGATION_BAR"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700683 @ViewDebug.IntToString(from = TYPE_VOLUME_OVERLAY,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200684 to = "VOLUME_OVERLAY"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700685 @ViewDebug.IntToString(from = TYPE_BOOT_PROGRESS,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200686 to = "BOOT_PROGRESS"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700687 @ViewDebug.IntToString(from = TYPE_INPUT_CONSUMER,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200688 to = "INPUT_CONSUMER"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700689 @ViewDebug.IntToString(from = TYPE_DREAM,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200690 to = "DREAM"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700691 @ViewDebug.IntToString(from = TYPE_NAVIGATION_BAR_PANEL,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200692 to = "NAVIGATION_BAR_PANEL"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700693 @ViewDebug.IntToString(from = TYPE_DISPLAY_OVERLAY,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200694 to = "DISPLAY_OVERLAY"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700695 @ViewDebug.IntToString(from = TYPE_MAGNIFICATION_OVERLAY,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200696 to = "MAGNIFICATION_OVERLAY"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700697 @ViewDebug.IntToString(from = TYPE_PRESENTATION,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200698 to = "PRESENTATION"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700699 @ViewDebug.IntToString(from = TYPE_PRIVATE_PRESENTATION,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200700 to = "PRIVATE_PRESENTATION"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700701 @ViewDebug.IntToString(from = TYPE_VOICE_INTERACTION,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200702 to = "VOICE_INTERACTION"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700703 @ViewDebug.IntToString(from = TYPE_VOICE_INTERACTION_STARTING,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200704 to = "VOICE_INTERACTION_STARTING"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700705 @ViewDebug.IntToString(from = TYPE_DOCK_DIVIDER,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200706 to = "DOCK_DIVIDER"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700707 @ViewDebug.IntToString(from = TYPE_QS_DIALOG,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200708 to = "QS_DIALOG"),
Wale Ogunwale5b6714c2016-11-01 20:54:46 -0700709 @ViewDebug.IntToString(from = TYPE_SCREENSHOT,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200710 to = "SCREENSHOT"),
Wale Ogunwale5cd907d2017-01-26 14:14:08 -0800711 @ViewDebug.IntToString(from = TYPE_APPLICATION_OVERLAY,
Jorim Jaggi484851b2017-09-22 16:03:27 +0200712 to = "APPLICATION_OVERLAY")
Joe Onorato8f2bd432010-03-25 11:45:28 -0700713 })
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800714 public int type;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -0700715
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800716 /**
717 * Start of window types that represent normal application windows.
718 */
719 public static final int FIRST_APPLICATION_WINDOW = 1;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -0700720
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800721 /**
722 * Window type: an application window that serves as the "base" window
723 * of the overall application; all other application windows will
724 * appear on top of it.
Craig Mautner5962b122012-10-05 14:45:52 -0700725 * In multiuser systems shows only on the owning user's window.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800726 */
727 public static final int TYPE_BASE_APPLICATION = 1;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -0700728
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800729 /**
730 * Window type: a normal application window. The {@link #token} must be
731 * an Activity token identifying who the window belongs to.
Craig Mautner5962b122012-10-05 14:45:52 -0700732 * In multiuser systems shows only on the owning user's window.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800733 */
734 public static final int TYPE_APPLICATION = 2;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -0700735
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800736 /**
737 * Window type: special application window that is displayed while the
738 * application is starting. Not for use by applications themselves;
739 * this is used by the system to display something until the
740 * application can show its own windows.
Craig Mautner5962b122012-10-05 14:45:52 -0700741 * In multiuser systems shows on all users' windows.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800742 */
743 public static final int TYPE_APPLICATION_STARTING = 3;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -0700744
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800745 /**
Chong Zhangfea963e2016-08-15 17:14:16 -0700746 * Window type: a variation on TYPE_APPLICATION that ensures the window
747 * manager will wait for this window to be drawn before the app is shown.
748 * In multiuser systems shows only on the owning user's window.
749 */
750 public static final int TYPE_DRAWN_APPLICATION = 4;
751
752 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800753 * End of types of application windows.
754 */
755 public static final int LAST_APPLICATION_WINDOW = 99;
Wale Ogunwale0a4dc222015-04-14 12:58:42 -0700756
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800757 /**
758 * Start of types of sub-windows. The {@link #token} of these windows
759 * must be set to the window they are attached to. These types of
760 * windows are kept next to their attached window in Z-order, and their
761 * coordinate space is relative to their attached window.
762 */
Wale Ogunwale0a4dc222015-04-14 12:58:42 -0700763 public static final int FIRST_SUB_WINDOW = 1000;
764
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800765 /**
766 * Window type: a panel on top of an application window. These windows
767 * appear on top of their attached window.
768 */
Wale Ogunwale0a4dc222015-04-14 12:58:42 -0700769 public static final int TYPE_APPLICATION_PANEL = FIRST_SUB_WINDOW;
770
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800771 /**
John Spurlock33291d82013-03-13 14:45:14 -0400772 * Window type: window for showing media (such as video). These windows
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800773 * are displayed behind their attached window.
774 */
Wale Ogunwale0a4dc222015-04-14 12:58:42 -0700775 public static final int TYPE_APPLICATION_MEDIA = FIRST_SUB_WINDOW + 1;
776
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800777 /**
778 * Window type: a sub-panel on top of an application window. These
779 * windows are displayed on top their attached window and any
780 * {@link #TYPE_APPLICATION_PANEL} panels.
781 */
Wale Ogunwale0a4dc222015-04-14 12:58:42 -0700782 public static final int TYPE_APPLICATION_SUB_PANEL = FIRST_SUB_WINDOW + 2;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800783
784 /** Window type: like {@link #TYPE_APPLICATION_PANEL}, but layout
785 * of the window happens as that of a top-level window, <em>not</em>
786 * as a child of its container.
787 */
Wale Ogunwale0a4dc222015-04-14 12:58:42 -0700788 public static final int TYPE_APPLICATION_ATTACHED_DIALOG = FIRST_SUB_WINDOW + 3;
789
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800790 /**
Dianne Hackbornc4d5d022009-05-21 17:32:42 -0700791 * Window type: window for showing overlays on top of media windows.
792 * These windows are displayed between TYPE_APPLICATION_MEDIA and the
793 * application window. They should be translucent to be useful. This
794 * is a big ugly hack so:
795 * @hide
796 */
Mathew Inwooda570dee2018-08-17 14:56:00 +0100797 @UnsupportedAppUsage
Wale Ogunwale0a4dc222015-04-14 12:58:42 -0700798 public static final int TYPE_APPLICATION_MEDIA_OVERLAY = FIRST_SUB_WINDOW + 4;
799
800 /**
801 * Window type: a above sub-panel on top of an application window and it's
802 * sub-panel windows. These windows are displayed on top of their attached window
803 * and any {@link #TYPE_APPLICATION_SUB_PANEL} panels.
Wale Ogunwale3540f932015-06-02 11:07:07 -0700804 * @hide
Wale Ogunwale0a4dc222015-04-14 12:58:42 -0700805 */
806 public static final int TYPE_APPLICATION_ABOVE_SUB_PANEL = FIRST_SUB_WINDOW + 5;
807
Dianne Hackbornc4d5d022009-05-21 17:32:42 -0700808 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800809 * End of types of sub-windows.
810 */
Wale Ogunwale0a4dc222015-04-14 12:58:42 -0700811 public static final int LAST_SUB_WINDOW = 1999;
812
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800813 /**
814 * Start of system-specific window types. These are not normally
815 * created by applications.
816 */
817 public static final int FIRST_SYSTEM_WINDOW = 2000;
Wale Ogunwale0a4dc222015-04-14 12:58:42 -0700818
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800819 /**
820 * Window type: the status bar. There can be only one status bar
821 * window; it is placed at the top of the screen, and all other
822 * windows are shifted down so they are below it.
Craig Mautner88400d32012-09-30 12:35:45 -0700823 * In multiuser systems shows on all users' windows.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800824 */
825 public static final int TYPE_STATUS_BAR = FIRST_SYSTEM_WINDOW;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -0700826
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800827 /**
828 * Window type: the search bar. There can be only one search bar
829 * window; it is placed at the top of the screen.
Craig Mautner88400d32012-09-30 12:35:45 -0700830 * In multiuser systems shows on all users' windows.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800831 */
832 public static final int TYPE_SEARCH_BAR = FIRST_SYSTEM_WINDOW+1;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -0700833
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800834 /**
835 * Window type: phone. These are non-application windows providing
836 * user interaction with the phone (in particular incoming calls).
837 * These windows are normally placed above all applications, but behind
838 * the status bar.
Craig Mautner88400d32012-09-30 12:35:45 -0700839 * In multiuser systems shows on all users' windows.
Wale Ogunwale5cd907d2017-01-26 14:14:08 -0800840 * @deprecated for non-system apps. Use {@link #TYPE_APPLICATION_OVERLAY} instead.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800841 */
Wale Ogunwale5cd907d2017-01-26 14:14:08 -0800842 @Deprecated
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800843 public static final int TYPE_PHONE = FIRST_SYSTEM_WINDOW+2;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -0700844
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800845 /**
846 * Window type: system window, such as low power alert. These windows
847 * are always on top of application windows.
Craig Mautner88400d32012-09-30 12:35:45 -0700848 * In multiuser systems shows only on the owning user's window.
Wale Ogunwale5cd907d2017-01-26 14:14:08 -0800849 * @deprecated for non-system apps. Use {@link #TYPE_APPLICATION_OVERLAY} instead.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800850 */
Wale Ogunwale5cd907d2017-01-26 14:14:08 -0800851 @Deprecated
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800852 public static final int TYPE_SYSTEM_ALERT = FIRST_SYSTEM_WINDOW+3;
Jorim Jaggi380ecb82014-03-14 17:25:20 +0100853
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800854 /**
855 * Window type: keyguard window.
Craig Mautner88400d32012-09-30 12:35:45 -0700856 * In multiuser systems shows on all users' windows.
Jorim Jaggie411fdf2014-07-28 23:00:44 +0200857 * @removed
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800858 */
859 public static final int TYPE_KEYGUARD = FIRST_SYSTEM_WINDOW+4;
Jorim Jaggi380ecb82014-03-14 17:25:20 +0100860
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800861 /**
862 * Window type: transient notifications.
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_TOAST = FIRST_SYSTEM_WINDOW+5;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -0700868
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800869 /**
870 * Window type: system overlay windows, which need to be displayed
871 * on top of everything else. These windows must not take input
872 * focus, or they will interfere with the keyguard.
Craig Mautner88400d32012-09-30 12:35:45 -0700873 * In multiuser systems shows only on the owning user's window.
Wale Ogunwale5cd907d2017-01-26 14:14:08 -0800874 * @deprecated for non-system apps. Use {@link #TYPE_APPLICATION_OVERLAY} instead.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800875 */
Wale Ogunwale5cd907d2017-01-26 14:14:08 -0800876 @Deprecated
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800877 public static final int TYPE_SYSTEM_OVERLAY = FIRST_SYSTEM_WINDOW+6;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -0700878
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800879 /**
880 * Window type: priority phone UI, which needs to be displayed even if
881 * the keyguard is active. These windows must not take input
882 * focus, or they will interfere with the keyguard.
Craig Mautner88400d32012-09-30 12:35:45 -0700883 * In multiuser systems shows on all users' windows.
Wale Ogunwale5cd907d2017-01-26 14:14:08 -0800884 * @deprecated for non-system apps. Use {@link #TYPE_APPLICATION_OVERLAY} instead.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800885 */
Wale Ogunwale5cd907d2017-01-26 14:14:08 -0800886 @Deprecated
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800887 public static final int TYPE_PRIORITY_PHONE = FIRST_SYSTEM_WINDOW+7;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -0700888
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800889 /**
890 * Window type: panel that slides out from the status bar
Craig Mautner88400d32012-09-30 12:35:45 -0700891 * In multiuser systems shows on all users' windows.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800892 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800893 public static final int TYPE_SYSTEM_DIALOG = FIRST_SYSTEM_WINDOW+8;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -0700894
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800895 /**
896 * Window type: dialogs that the keyguard shows
Craig Mautner88400d32012-09-30 12:35:45 -0700897 * In multiuser systems shows on all users' windows.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800898 */
899 public static final int TYPE_KEYGUARD_DIALOG = FIRST_SYSTEM_WINDOW+9;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -0700900
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800901 /**
902 * Window type: internal system error windows, appear on top of
903 * everything they can.
Craig Mautner88400d32012-09-30 12:35:45 -0700904 * In multiuser systems shows only on the owning user's window.
Wale Ogunwale5cd907d2017-01-26 14:14:08 -0800905 * @deprecated for non-system apps. Use {@link #TYPE_APPLICATION_OVERLAY} instead.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800906 */
Wale Ogunwale5cd907d2017-01-26 14:14:08 -0800907 @Deprecated
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800908 public static final int TYPE_SYSTEM_ERROR = FIRST_SYSTEM_WINDOW+10;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -0700909
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800910 /**
911 * Window type: internal input methods windows, which appear above
912 * the normal UI. Application windows may be resized or panned to keep
913 * the input focus visible while this window is displayed.
Craig Mautner88400d32012-09-30 12:35:45 -0700914 * In multiuser systems shows only on the owning user's window.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800915 */
916 public static final int TYPE_INPUT_METHOD = FIRST_SYSTEM_WINDOW+11;
917
918 /**
919 * Window type: internal input methods dialog windows, which appear above
920 * the current input method window.
Craig Mautner88400d32012-09-30 12:35:45 -0700921 * In multiuser systems shows only on the owning user's window.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800922 */
923 public static final int TYPE_INPUT_METHOD_DIALOG= FIRST_SYSTEM_WINDOW+12;
924
925 /**
Dianne Hackborn4c62fc02009-08-08 20:40:27 -0700926 * Window type: wallpaper window, placed behind any window that wants
927 * to sit on top of the wallpaper.
Craig Mautner88400d32012-09-30 12:35:45 -0700928 * In multiuser systems shows only on the owning user's window.
Dianne Hackborn4c62fc02009-08-08 20:40:27 -0700929 */
930 public static final int TYPE_WALLPAPER = FIRST_SYSTEM_WINDOW+13;
931
932 /**
Joe Onorato29fc2c92010-11-24 10:26:50 -0800933 * Window type: panel that slides out from over the status bar
Craig Mautner88400d32012-09-30 12:35:45 -0700934 * In multiuser systems shows on all users' windows.
Dianne Hackbornbadc47e2009-11-08 17:37:07 -0800935 */
936 public static final int TYPE_STATUS_BAR_PANEL = FIRST_SYSTEM_WINDOW+14;
Jeff Brown3b2b3542010-10-15 00:54:27 -0700937
938 /**
939 * Window type: secure system overlay windows, which need to be displayed
940 * on top of everything else. These windows must not take input
941 * focus, or they will interfere with the keyguard.
942 *
943 * This is exactly like {@link #TYPE_SYSTEM_OVERLAY} except that only the
944 * system itself is allowed to create these overlays. Applications cannot
945 * obtain permission to create secure system overlays.
Craig Mautner88400d32012-09-30 12:35:45 -0700946 *
947 * In multiuser systems shows only on the owning user's window.
Jeff Brown3b2b3542010-10-15 00:54:27 -0700948 * @hide
949 */
Mathew Inwooda570dee2018-08-17 14:56:00 +0100950 @UnsupportedAppUsage
Jeff Brown3b2b3542010-10-15 00:54:27 -0700951 public static final int TYPE_SECURE_SYSTEM_OVERLAY = FIRST_SYSTEM_WINDOW+15;
952
Dianne Hackbornbadc47e2009-11-08 17:37:07 -0800953 /**
Christopher Tatea53146c2010-09-07 11:57:52 -0700954 * Window type: the drag-and-drop pseudowindow. There is only one
955 * drag layer (at most), and it is placed on top of all other windows.
Craig Mautner88400d32012-09-30 12:35:45 -0700956 * In multiuser systems shows only on the owning user's window.
Christopher Tatea53146c2010-09-07 11:57:52 -0700957 * @hide
958 */
Jeff Brown3b2b3542010-10-15 00:54:27 -0700959 public static final int TYPE_DRAG = FIRST_SYSTEM_WINDOW+16;
Christopher Tatea53146c2010-09-07 11:57:52 -0700960
961 /**
Robert Carr8360a782017-11-22 12:47:58 -0800962 * Window type: panel that slides out from over the status bar
963 * In multiuser systems shows on all users' windows. These windows
964 * are displayed on top of the stauts bar and any {@link #TYPE_STATUS_BAR_PANEL}
965 * windows.
Joe Onoratoa89e9032010-11-24 11:13:44 -0800966 * @hide
Joe Onorato29fc2c92010-11-24 10:26:50 -0800967 */
968 public static final int TYPE_STATUS_BAR_SUB_PANEL = FIRST_SYSTEM_WINDOW+17;
969
Jeff Brown83c09682010-12-23 17:50:18 -0800970 /**
971 * Window type: (mouse) pointer
Craig Mautner88400d32012-09-30 12:35:45 -0700972 * In multiuser systems shows on all users' windows.
Jeff Brown83c09682010-12-23 17:50:18 -0800973 * @hide
974 */
975 public static final int TYPE_POINTER = FIRST_SYSTEM_WINDOW+18;
Joe Onorato29fc2c92010-11-24 10:26:50 -0800976
977 /**
Daniel Sandler8956dbb2011-04-22 07:55:02 -0400978 * Window type: Navigation bar (when distinct from status bar)
Craig Mautner88400d32012-09-30 12:35:45 -0700979 * In multiuser systems shows on all users' windows.
Daniel Sandler8956dbb2011-04-22 07:55:02 -0400980 * @hide
981 */
982 public static final int TYPE_NAVIGATION_BAR = FIRST_SYSTEM_WINDOW+19;
983
984 /**
Dianne Hackborne8ecde12011-08-03 18:55:19 -0700985 * Window type: The volume level overlay/dialog shown when the user
986 * changes the system volume.
Craig Mautner88400d32012-09-30 12:35:45 -0700987 * In multiuser systems shows on all users' windows.
Dianne Hackborne8ecde12011-08-03 18:55:19 -0700988 * @hide
989 */
990 public static final int TYPE_VOLUME_OVERLAY = FIRST_SYSTEM_WINDOW+20;
991
992 /**
Dianne Hackborn29aae6f2011-08-18 18:30:09 -0700993 * Window type: The boot progress dialog, goes on top of everything
994 * in the world.
Craig Mautner88400d32012-09-30 12:35:45 -0700995 * In multiuser systems shows on all users' windows.
Dianne Hackborn29aae6f2011-08-18 18:30:09 -0700996 * @hide
997 */
998 public static final int TYPE_BOOT_PROGRESS = FIRST_SYSTEM_WINDOW+21;
999
1000 /**
Selim Cinekf83e8242015-05-19 18:08:14 -07001001 * Window type to consume input events when the systemUI bars are hidden.
Craig Mautner88400d32012-09-30 12:35:45 -07001002 * In multiuser systems shows on all users' windows.
Dianne Hackborndf89e652011-10-06 22:35:11 -07001003 * @hide
1004 */
Selim Cinekf83e8242015-05-19 18:08:14 -07001005 public static final int TYPE_INPUT_CONSUMER = FIRST_SYSTEM_WINDOW+22;
Dianne Hackborndf89e652011-10-06 22:35:11 -07001006
1007 /**
Daniel Sandler7d276c32012-01-30 14:33:52 -05001008 * Window type: Dreams (screen saver) window, just above keyguard.
Craig Mautner88400d32012-09-30 12:35:45 -07001009 * In multiuser systems shows only on the owning user's window.
Daniel Sandler7d276c32012-01-30 14:33:52 -05001010 * @hide
1011 */
1012 public static final int TYPE_DREAM = FIRST_SYSTEM_WINDOW+23;
1013
1014 /**
Jim Millere898ac52012-04-06 17:10:57 -07001015 * Window type: Navigation bar panel (when navigation bar is distinct from status bar)
Craig Mautner88400d32012-09-30 12:35:45 -07001016 * In multiuser systems shows on all users' windows.
Jim Millere898ac52012-04-06 17:10:57 -07001017 * @hide
1018 */
1019 public static final int TYPE_NAVIGATION_BAR_PANEL = FIRST_SYSTEM_WINDOW+24;
1020
1021 /**
Jeff Brownbd6e1502012-08-28 03:27:37 -07001022 * Window type: Display overlay window. Used to simulate secondary display devices.
Craig Mautner88400d32012-09-30 12:35:45 -07001023 * In multiuser systems shows on all users' windows.
Jeff Brownbd6e1502012-08-28 03:27:37 -07001024 * @hide
1025 */
Mathew Inwooda570dee2018-08-17 14:56:00 +01001026 @UnsupportedAppUsage
Jeff Brownbd6e1502012-08-28 03:27:37 -07001027 public static final int TYPE_DISPLAY_OVERLAY = FIRST_SYSTEM_WINDOW+26;
1028
1029 /**
Svetoslav Ganov1cf70bb2012-08-06 10:53:34 -07001030 * Window type: Magnification overlay window. Used to highlight the magnified
1031 * portion of a display when accessibility magnification is enabled.
Craig Mautner88400d32012-09-30 12:35:45 -07001032 * In multiuser systems shows on all users' windows.
Svetoslav Ganov1cf70bb2012-08-06 10:53:34 -07001033 * @hide
1034 */
1035 public static final int TYPE_MAGNIFICATION_OVERLAY = FIRST_SYSTEM_WINDOW+27;
1036
1037 /**
keunyounga446bf02013-06-21 19:07:57 -07001038 * Window type: Window for Presentation on top of private
1039 * virtual display.
1040 */
1041 public static final int TYPE_PRIVATE_PRESENTATION = FIRST_SYSTEM_WINDOW+30;
1042
1043 /**
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001044 * Window type: Windows in the voice interaction layer.
1045 * @hide
1046 */
1047 public static final int TYPE_VOICE_INTERACTION = FIRST_SYSTEM_WINDOW+31;
1048
1049 /**
Phil Weaver40ded282016-01-25 15:49:02 -08001050 * Window type: Windows that are overlaid <em>only</em> by a connected {@link
Svetoslav3a5c7212014-10-14 09:54:26 -07001051 * android.accessibilityservice.AccessibilityService} for interception of
1052 * user interactions without changing the windows an accessibility service
1053 * can introspect. In particular, an accessibility service can introspect
1054 * only windows that a sighted user can interact with which is they can touch
1055 * these windows or can type into these windows. For example, if there
1056 * is a full screen accessibility overlay that is touchable, the windows
Phil Weaver40ded282016-01-25 15:49:02 -08001057 * below it will be introspectable by an accessibility service even though
Svetoslav3a5c7212014-10-14 09:54:26 -07001058 * they are covered by a touchable window.
1059 */
1060 public static final int TYPE_ACCESSIBILITY_OVERLAY = FIRST_SYSTEM_WINDOW+32;
1061
1062 /**
Jorim Jaggi225d3b52015-04-01 11:18:57 -07001063 * Window type: Starting window for voice interaction layer.
1064 * @hide
1065 */
1066 public static final int TYPE_VOICE_INTERACTION_STARTING = FIRST_SYSTEM_WINDOW+33;
1067
1068 /**
Filip Gruszczynski466f3212015-09-21 17:57:57 -07001069 * Window for displaying a handle used for resizing docked stacks. This window is owned
1070 * by the system process.
1071 * @hide
1072 */
1073 public static final int TYPE_DOCK_DIVIDER = FIRST_SYSTEM_WINDOW+34;
1074
1075 /**
Jason Monk8f7f3182015-11-18 16:35:14 -05001076 * Window type: like {@link #TYPE_APPLICATION_ATTACHED_DIALOG}, but used
1077 * by Quick Settings Tiles.
1078 * @hide
1079 */
1080 public static final int TYPE_QS_DIALOG = FIRST_SYSTEM_WINDOW+35;
1081
1082 /**
Muyuan Li6ca619f2016-03-08 13:30:42 -08001083 * Window type: shares similar characteristics with {@link #TYPE_DREAM}. The layer is
Muyuan Li36ca72c2016-08-06 20:24:06 -07001084 * reserved for screenshot region selection. These windows must not take input focus.
Muyuan Li6ca619f2016-03-08 13:30:42 -08001085 * @hide
1086 */
1087 public static final int TYPE_SCREENSHOT = FIRST_SYSTEM_WINDOW + 36;
1088
1089 /**
Wale Ogunwale5b6714c2016-11-01 20:54:46 -07001090 * Window type: Window for Presentation on an external display.
1091 * @see android.app.Presentation
1092 * @hide
1093 */
1094 public static final int TYPE_PRESENTATION = FIRST_SYSTEM_WINDOW + 37;
1095
1096 /**
Wale Ogunwale5cd907d2017-01-26 14:14:08 -08001097 * Window type: Application overlay windows are displayed above all activity windows
1098 * (types between {@link #FIRST_APPLICATION_WINDOW} and {@link #LAST_APPLICATION_WINDOW})
1099 * but below critical system windows like the status bar or IME.
1100 * <p>
1101 * The system may change the position, size, or visibility of these windows at anytime
1102 * to reduce visual clutter to the user and also manage resources.
1103 * <p>
1104 * Requires {@link android.Manifest.permission#SYSTEM_ALERT_WINDOW} permission.
1105 * <p>
Wale Ogunwaled993a572017-02-05 13:52:09 -08001106 * The system will adjust the importance of processes with this window type to reduce the
1107 * chance of the low-memory-killer killing them.
1108 * <p>
1109 * In multi-user systems shows only on the owning user's screen.
Wale Ogunwale5cd907d2017-01-26 14:14:08 -08001110 */
1111 public static final int TYPE_APPLICATION_OVERLAY = FIRST_SYSTEM_WINDOW + 38;
1112
1113 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001114 * End of types of system windows.
1115 */
1116 public static final int LAST_SYSTEM_WINDOW = 2999;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001117
Wale Ogunwale5cd907d2017-01-26 14:14:08 -08001118 /**
Albert Chaulke4338f82017-04-19 15:54:08 -04001119 * @hide
1120 * Used internally when there is no suitable type available.
1121 */
1122 public static final int INVALID_WINDOW_TYPE = -1;
1123
1124 /**
Wale Ogunwale5cd907d2017-01-26 14:14:08 -08001125 * Return true if the window type is an alert window.
1126 *
1127 * @param type The window type.
1128 * @return If the window type is an alert window.
1129 * @hide
1130 */
1131 public static boolean isSystemAlertWindowType(int type) {
1132 switch (type) {
1133 case TYPE_PHONE:
1134 case TYPE_PRIORITY_PHONE:
1135 case TYPE_SYSTEM_ALERT:
1136 case TYPE_SYSTEM_ERROR:
1137 case TYPE_SYSTEM_OVERLAY:
1138 case TYPE_APPLICATION_OVERLAY:
1139 return true;
1140 }
1141 return false;
1142 }
1143
Mathias Agopiand2112302010-12-07 19:38:17 -08001144 /** @deprecated this is ignored, this value is set automatically when needed. */
1145 @Deprecated
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001146 public static final int MEMORY_TYPE_NORMAL = 0;
Mathias Agopiand2112302010-12-07 19:38:17 -08001147 /** @deprecated this is ignored, this value is set automatically when needed. */
Mathias Agopian317a6282009-08-13 17:29:02 -07001148 @Deprecated
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001149 public static final int MEMORY_TYPE_HARDWARE = 1;
Mathias Agopiand2112302010-12-07 19:38:17 -08001150 /** @deprecated this is ignored, this value is set automatically when needed. */
Mathias Agopian317a6282009-08-13 17:29:02 -07001151 @Deprecated
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001152 public static final int MEMORY_TYPE_GPU = 2;
Mathias Agopiand2112302010-12-07 19:38:17 -08001153 /** @deprecated this is ignored, this value is set automatically when needed. */
1154 @Deprecated
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001155 public static final int MEMORY_TYPE_PUSH_BUFFERS = 3;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001156
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001157 /**
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001158 * @deprecated this is ignored
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001159 */
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001160 @Deprecated
1161 public int memoryType;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001162
Mike Lockwoodef731622010-01-27 17:51:34 -05001163 /** Window flag: as long as this window is visible to the user, allow
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001164 * the lock screen to activate while the screen is on.
1165 * This can be used independently, or in combination with
Christopher Tate95f78502010-01-29 15:57:34 -08001166 * {@link #FLAG_KEEP_SCREEN_ON} and/or {@link #FLAG_SHOW_WHEN_LOCKED} */
Mike Lockwoodef731622010-01-27 17:51:34 -05001167 public static final int FLAG_ALLOW_LOCK_WHILE_SCREEN_ON = 0x00000001;
1168
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001169 /** Window flag: everything behind this window will be dimmed.
1170 * Use {@link #dimAmount} to control the amount of dim. */
1171 public static final int FLAG_DIM_BEHIND = 0x00000002;
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001172
1173 /** Window flag: blur everything behind this window.
1174 * @deprecated Blurring is no longer supported. */
1175 @Deprecated
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001176 public static final int FLAG_BLUR_BEHIND = 0x00000004;
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001177
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001178 /** Window flag: this window won't ever get key input focus, so the
1179 * user can not send key or other button events to it. Those will
1180 * instead go to whatever focusable window is behind it. This flag
1181 * will also enable {@link #FLAG_NOT_TOUCH_MODAL} whether or not that
1182 * is explicitly set.
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001183 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001184 * <p>Setting this flag also implies that the window will not need to
1185 * interact with
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001186 * a soft input method, so it will be Z-ordered and positioned
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001187 * independently of any active input method (typically this means it
1188 * gets Z-ordered on top of the input method, so it can use the full
1189 * screen for its content and cover the input method if needed. You
1190 * can use {@link #FLAG_ALT_FOCUSABLE_IM} to modify this behavior. */
1191 public static final int FLAG_NOT_FOCUSABLE = 0x00000008;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001192
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001193 /** Window flag: this window can never receive touch events. */
1194 public static final int FLAG_NOT_TOUCHABLE = 0x00000010;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001195
John Spurlock33291d82013-03-13 14:45:14 -04001196 /** Window flag: even when this window is focusable (its
1197 * {@link #FLAG_NOT_FOCUSABLE} is not set), allow any pointer events
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001198 * outside of the window to be sent to the windows behind it. Otherwise
1199 * it will consume all pointer events itself, regardless of whether they
1200 * are inside of the window. */
1201 public static final int FLAG_NOT_TOUCH_MODAL = 0x00000020;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001202
John Spurlock33291d82013-03-13 14:45:14 -04001203 /** Window flag: when set, if the device is asleep when the touch
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001204 * screen is pressed, you will receive this first touch event. Usually
1205 * the first touch event is consumed by the system since the user can
1206 * not see what they are pressing on.
Jeff Brown037c33e2014-04-09 00:31:55 -07001207 *
1208 * @deprecated This flag has no effect.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001209 */
Jeff Brown037c33e2014-04-09 00:31:55 -07001210 @Deprecated
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001211 public static final int FLAG_TOUCHABLE_WHEN_WAKING = 0x00000040;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001212
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001213 /** Window flag: as long as this window is visible to the user, keep
1214 * the device's screen turned on and bright. */
1215 public static final int FLAG_KEEP_SCREEN_ON = 0x00000080;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001216
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001217 /** Window flag: place the window within the entire screen, ignoring
John Spurlock33291d82013-03-13 14:45:14 -04001218 * decorations around the border (such as the status bar). The
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001219 * window must correctly position its contents to take the screen
1220 * decoration into account. This flag is normally set for you
Adrian Roosfa02da62018-01-15 16:01:18 +01001221 * by Window as described in {@link Window#setFlags}.
1222 *
1223 * <p>Note: on displays that have a {@link DisplayCutout}, the window may be placed
1224 * such that it avoids the {@link DisplayCutout} area if necessary according to the
1225 * {@link #layoutInDisplayCutoutMode}.
1226 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001227 public static final int FLAG_LAYOUT_IN_SCREEN = 0x00000100;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001228
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001229 /** Window flag: allow window to extend outside of the screen. */
1230 public static final int FLAG_LAYOUT_NO_LIMITS = 0x00000200;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001231
Dianne Hackborn1bf1af62013-02-25 16:48:53 -08001232 /**
John Spurlock33291d82013-03-13 14:45:14 -04001233 * Window flag: hide all screen decorations (such as the status bar) while
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001234 * this window is displayed. This allows the window to use the entire
1235 * display space for itself -- the status bar will be hidden when
Chet Haase45c89c22013-04-29 16:04:40 -07001236 * an app window with this flag set is on the top layer. A fullscreen window
1237 * will ignore a value of {@link #SOFT_INPUT_ADJUST_RESIZE} for the window's
1238 * {@link #softInputMode} field; the window will stay fullscreen
1239 * and will not resize.
Dianne Hackborn1bf1af62013-02-25 16:48:53 -08001240 *
1241 * <p>This flag can be controlled in your theme through the
1242 * {@link android.R.attr#windowFullscreen} attribute; this attribute
1243 * is automatically set for you in the standard fullscreen themes
1244 * such as {@link android.R.style#Theme_NoTitleBar_Fullscreen},
1245 * {@link android.R.style#Theme_Black_NoTitleBar_Fullscreen},
1246 * {@link android.R.style#Theme_Light_NoTitleBar_Fullscreen},
1247 * {@link android.R.style#Theme_Holo_NoActionBar_Fullscreen},
1248 * {@link android.R.style#Theme_Holo_Light_NoActionBar_Fullscreen},
1249 * {@link android.R.style#Theme_DeviceDefault_NoActionBar_Fullscreen}, and
1250 * {@link android.R.style#Theme_DeviceDefault_Light_NoActionBar_Fullscreen}.</p>
1251 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001252 public static final int FLAG_FULLSCREEN = 0x00000400;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001253
John Spurlock33291d82013-03-13 14:45:14 -04001254 /** Window flag: override {@link #FLAG_FULLSCREEN} and force the
1255 * screen decorations (such as the status bar) to be shown. */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001256 public static final int FLAG_FORCE_NOT_FULLSCREEN = 0x00000800;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001257
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001258 /** Window flag: turn on dithering when compositing this window to
Jeff Brown3cc321e2012-07-16 16:04:23 -07001259 * the screen.
1260 * @deprecated This flag is no longer used. */
1261 @Deprecated
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001262 public static final int FLAG_DITHER = 0x00001000;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001263
John Spurlock33291d82013-03-13 14:45:14 -04001264 /** Window flag: treat the content of the window as secure, preventing
Jeff Brownf0681b32012-10-23 17:35:57 -07001265 * it from appearing in screenshots or from being viewed on non-secure
1266 * displays.
1267 *
1268 * <p>See {@link android.view.Display#FLAG_SECURE} for more details about
1269 * secure surfaces and secure displays.
1270 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001271 public static final int FLAG_SECURE = 0x00002000;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001272
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001273 /** Window flag: a special mode where the layout parameters are used
1274 * to perform scaling of the surface when it is composited to the
1275 * screen. */
1276 public static final int FLAG_SCALED = 0x00004000;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001277
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001278 /** Window flag: intended for windows that will often be used when the user is
1279 * holding the screen against their face, it will aggressively filter the event
1280 * stream to prevent unintended presses in this situation that may not be
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001281 * desired for a particular window, when such an event stream is detected, the
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001282 * application will receive a CANCEL motion event to indicate this so applications
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001283 * can handle this accordingly by taking no action on the event
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001284 * until the finger is released. */
1285 public static final int FLAG_IGNORE_CHEEK_PRESSES = 0x00008000;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001286
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001287 /** Window flag: a special option only for use in combination with
1288 * {@link #FLAG_LAYOUT_IN_SCREEN}. When requesting layout in the
1289 * screen your window may appear on top of or behind screen decorations
1290 * such as the status bar. By also including this flag, the window
1291 * manager will report the inset rectangle needed to ensure your
1292 * content is not covered by screen decorations. This flag is normally
1293 * set for you by Window as described in {@link Window#setFlags}.*/
1294 public static final int FLAG_LAYOUT_INSET_DECOR = 0x00010000;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001295
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001296 /** Window flag: invert the state of {@link #FLAG_NOT_FOCUSABLE} with
1297 * respect to how this window interacts with the current method. That
1298 * is, if FLAG_NOT_FOCUSABLE is set and this flag is set, then the
1299 * window will behave as if it needs to interact with the input method
1300 * and thus be placed behind/away from it; if FLAG_NOT_FOCUSABLE is
1301 * not set and this flag is set, then the window will behave as if it
1302 * doesn't need to interact with the input method and can be placed
1303 * to use more space and cover the input method.
1304 */
1305 public static final int FLAG_ALT_FOCUSABLE_IM = 0x00020000;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001306
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001307 /** Window flag: if you have set {@link #FLAG_NOT_TOUCH_MODAL}, you
1308 * can set this flag to receive a single special MotionEvent with
1309 * the action
1310 * {@link MotionEvent#ACTION_OUTSIDE MotionEvent.ACTION_OUTSIDE} for
1311 * touches that occur outside of your window. Note that you will not
1312 * receive the full down/move/up gesture, only the location of the
1313 * first down as an ACTION_OUTSIDE.
1314 */
1315 public static final int FLAG_WATCH_OUTSIDE_TOUCH = 0x00040000;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001316
Suchi Amalapurapud1a93372009-05-14 17:54:31 -07001317 /** Window flag: special flag to let windows be shown when the screen
1318 * is locked. This will let application windows take precedence over
1319 * key guard or any other lock screens. Can be used with
1320 * {@link #FLAG_KEEP_SCREEN_ON} to turn screen on and display windows
Dianne Hackborn9bfb7072009-09-22 11:37:40 -07001321 * directly before showing the key guard window. Can be used with
1322 * {@link #FLAG_DISMISS_KEYGUARD} to automatically fully dismisss
1323 * non-secure keyguards. This flag only applies to the top-most
1324 * full-screen window.
chaviw59b98852017-06-13 12:05:44 -07001325 * @deprecated Use {@link android.R.attr#showWhenLocked} or
1326 * {@link android.app.Activity#setShowWhenLocked(boolean)} instead to prevent an
1327 * unintentional double life-cycle event.
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001328 */
chaviw59b98852017-06-13 12:05:44 -07001329 @Deprecated
Suchi Amalapurapud1a93372009-05-14 17:54:31 -07001330 public static final int FLAG_SHOW_WHEN_LOCKED = 0x00080000;
1331
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001332 /** Window flag: ask that the system wallpaper be shown behind
1333 * your window. The window surface must be translucent to be able
1334 * to actually see the wallpaper behind it; this flag just ensures
1335 * that the wallpaper surface will be there if this window actually
1336 * has translucent regions.
Dianne Hackborn1bf1af62013-02-25 16:48:53 -08001337 *
1338 * <p>This flag can be controlled in your theme through the
1339 * {@link android.R.attr#windowShowWallpaper} attribute; this attribute
1340 * is automatically set for you in the standard wallpaper themes
1341 * such as {@link android.R.style#Theme_Wallpaper},
1342 * {@link android.R.style#Theme_Wallpaper_NoTitleBar},
1343 * {@link android.R.style#Theme_Wallpaper_NoTitleBar_Fullscreen},
1344 * {@link android.R.style#Theme_Holo_Wallpaper},
1345 * {@link android.R.style#Theme_Holo_Wallpaper_NoTitleBar},
1346 * {@link android.R.style#Theme_DeviceDefault_Wallpaper}, and
1347 * {@link android.R.style#Theme_DeviceDefault_Wallpaper_NoTitleBar}.</p>
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001348 */
1349 public static final int FLAG_SHOW_WALLPAPER = 0x00100000;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001350
Dianne Hackborn93e462b2009-09-15 22:50:40 -07001351 /** Window flag: when set as a window is being added or made
1352 * visible, once the window has been shown then the system will
1353 * poke the power manager's user activity (as if the user had woken
chaviw59b98852017-06-13 12:05:44 -07001354 * up the device) to turn the screen on.
1355 * @deprecated Use {@link android.R.attr#turnScreenOn} or
1356 * {@link android.app.Activity#setTurnScreenOn(boolean)} instead to prevent an
1357 * unintentional double life-cycle event.
1358 */
1359 @Deprecated
Dianne Hackborn93e462b2009-09-15 22:50:40 -07001360 public static final int FLAG_TURN_SCREEN_ON = 0x00200000;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001361
Jeff Sharkey67f9d502017-08-05 13:49:13 -06001362 /**
1363 * Window flag: when set the window will cause the keyguard to be
1364 * dismissed, only if it is not a secure lock keyguard. Because such a
1365 * keyguard is not needed for security, it will never re-appear if the
1366 * user navigates to another window (in contrast to
1367 * {@link #FLAG_SHOW_WHEN_LOCKED}, which will only temporarily hide both
1368 * secure and non-secure keyguards but ensure they reappear when the
1369 * user moves to another UI that doesn't hide them). If the keyguard is
1370 * currently active and is secure (requires an unlock credential) than
1371 * the user will still need to confirm it before seeing this window,
1372 * unless {@link #FLAG_SHOW_WHEN_LOCKED} has also been set.
1373 *
1374 * @deprecated Use {@link #FLAG_SHOW_WHEN_LOCKED} or
1375 * {@link KeyguardManager#requestDismissKeyguard} instead.
1376 * Since keyguard was dismissed all the time as long as an
1377 * activity with this flag on its window was focused,
1378 * keyguard couldn't guard against unintentional touches on
1379 * the screen, which isn't desired.
Daniel Sandlerae069f72010-06-17 21:56:26 -04001380 */
Jorim Jaggi07961872016-11-23 11:28:57 +01001381 @Deprecated
Dianne Hackborn9bfb7072009-09-22 11:37:40 -07001382 public static final int FLAG_DISMISS_KEYGUARD = 0x00400000;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001383
Jeff Brown01ce2e92010-09-26 22:20:12 -07001384 /** Window flag: when set the window will accept for touch events
1385 * outside of its bounds to be sent to other windows that also
1386 * support split touch. When this flag is not set, the first pointer
1387 * that goes down determines the window to which all subsequent touches
1388 * go until all pointers go up. When this flag is set, each pointer
1389 * (not necessarily the first) that goes down determines the window
1390 * to which all subsequent touches of that pointer will go until that
1391 * pointer goes up thereby enabling touches with multiple pointers
1392 * to be split across multiple windows.
Dianne Hackbornd9b3b7e2010-11-16 18:22:49 -08001393 */
Jeff Brown01ce2e92010-09-26 22:20:12 -07001394 public static final int FLAG_SPLIT_TOUCH = 0x00800000;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001395
Dianne Hackbornd9b3b7e2010-11-16 18:22:49 -08001396 /**
Romain Guy72f0a272011-01-09 16:01:46 -08001397 * <p>Indicates whether this window should be hardware accelerated.
1398 * Requesting hardware acceleration does not guarantee it will happen.</p>
Dianne Hackbornc652de82013-02-15 16:32:56 -08001399 *
Romain Guy72f0a272011-01-09 16:01:46 -08001400 * <p>This flag can be controlled programmatically <em>only</em> to enable
1401 * hardware acceleration. To enable hardware acceleration for a given
1402 * window programmatically, do the following:</p>
Dianne Hackbornc652de82013-02-15 16:32:56 -08001403 *
Romain Guy72f0a272011-01-09 16:01:46 -08001404 * <pre>
1405 * Window w = activity.getWindow(); // in Activity's onCreate() for instance
1406 * w.setFlags(WindowManager.LayoutParams.FLAG_HARDWARE_ACCELERATED,
1407 * WindowManager.LayoutParams.FLAG_HARDWARE_ACCELERATED);
1408 * </pre>
Dianne Hackbornc652de82013-02-15 16:32:56 -08001409 *
Romain Guy72f0a272011-01-09 16:01:46 -08001410 * <p>It is important to remember that this flag <strong>must</strong>
1411 * be set before setting the content view of your activity or dialog.</p>
Dianne Hackbornc652de82013-02-15 16:32:56 -08001412 *
Romain Guy72f0a272011-01-09 16:01:46 -08001413 * <p>This flag cannot be used to disable hardware acceleration after it
1414 * was enabled in your manifest using
1415 * {@link android.R.attr#hardwareAccelerated}. If you need to selectively
1416 * and programmatically disable hardware acceleration (for automated testing
1417 * for instance), make sure it is turned off in your manifest and enable it
1418 * on your activity or dialog when you need it instead, using the method
1419 * described above.</p>
Dianne Hackbornc652de82013-02-15 16:32:56 -08001420 *
Romain Guy72f0a272011-01-09 16:01:46 -08001421 * <p>This flag is automatically set by the system if the
1422 * {@link android.R.attr#hardwareAccelerated android:hardwareAccelerated}
1423 * XML attribute is set to true on an activity or on the application.</p>
Dianne Hackbornd9b3b7e2010-11-16 18:22:49 -08001424 */
1425 public static final int FLAG_HARDWARE_ACCELERATED = 0x01000000;
Daniel Sandler611fae42010-06-17 10:45:00 -04001426
Dianne Hackborn1bf1af62013-02-25 16:48:53 -08001427 /**
1428 * Window flag: allow window contents to extend in to the screen's
Dianne Hackbornc652de82013-02-15 16:32:56 -08001429 * overscan area, if there is one. The window should still correctly
1430 * position its contents to take the overscan area into account.
Dianne Hackborn1bf1af62013-02-25 16:48:53 -08001431 *
1432 * <p>This flag can be controlled in your theme through the
1433 * {@link android.R.attr#windowOverscan} attribute; this attribute
1434 * is automatically set for you in the standard overscan themes
Ying Wang4e0eb222013-04-18 20:39:48 -07001435 * such as
Dianne Hackborn1bf1af62013-02-25 16:48:53 -08001436 * {@link android.R.style#Theme_Holo_NoActionBar_Overscan},
1437 * {@link android.R.style#Theme_Holo_Light_NoActionBar_Overscan},
1438 * {@link android.R.style#Theme_DeviceDefault_NoActionBar_Overscan}, and
1439 * {@link android.R.style#Theme_DeviceDefault_Light_NoActionBar_Overscan}.</p>
1440 *
1441 * <p>When this flag is enabled for a window, its normal content may be obscured
1442 * to some degree by the overscan region of the display. To ensure key parts of
1443 * that content are visible to the user, you can use
1444 * {@link View#setFitsSystemWindows(boolean) View.setFitsSystemWindows(boolean)}
1445 * to set the point in the view hierarchy where the appropriate offsets should
1446 * be applied. (This can be done either by directly calling this function, using
1447 * the {@link android.R.attr#fitsSystemWindows} attribute in your view hierarchy,
1448 * or implementing you own {@link View#fitSystemWindows(android.graphics.Rect)
1449 * View.fitSystemWindows(Rect)} method).</p>
1450 *
1451 * <p>This mechanism for positioning content elements is identical to its equivalent
1452 * use with layout and {@link View#setSystemUiVisibility(int)
1453 * View.setSystemUiVisibility(int)}; here is an example layout that will correctly
1454 * position its UI elements with this overscan flag is set:</p>
1455 *
1456 * {@sample development/samples/ApiDemos/res/layout/overscan_activity.xml complete}
Dianne Hackbornc652de82013-02-15 16:32:56 -08001457 */
1458 public static final int FLAG_LAYOUT_IN_OVERSCAN = 0x02000000;
1459
John Spurlockbd957402013-10-03 11:38:39 -04001460 /**
1461 * Window flag: request a translucent status bar with minimal system-provided
1462 * background protection.
1463 *
1464 * <p>This flag can be controlled in your theme through the
1465 * {@link android.R.attr#windowTranslucentStatus} attribute; this attribute
1466 * is automatically set for you in the standard translucent decor themes
1467 * such as
1468 * {@link android.R.style#Theme_Holo_NoActionBar_TranslucentDecor},
1469 * {@link android.R.style#Theme_Holo_Light_NoActionBar_TranslucentDecor},
1470 * {@link android.R.style#Theme_DeviceDefault_NoActionBar_TranslucentDecor}, and
1471 * {@link android.R.style#Theme_DeviceDefault_Light_NoActionBar_TranslucentDecor}.</p>
1472 *
1473 * <p>When this flag is enabled for a window, it automatically sets
1474 * the system UI visibility flags {@link View#SYSTEM_UI_FLAG_LAYOUT_STABLE} and
1475 * {@link View#SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN}.</p>
1476 */
1477 public static final int FLAG_TRANSLUCENT_STATUS = 0x04000000;
1478
1479 /**
1480 * Window flag: request a translucent navigation bar with minimal system-provided
1481 * background protection.
1482 *
1483 * <p>This flag can be controlled in your theme through the
1484 * {@link android.R.attr#windowTranslucentNavigation} attribute; this attribute
1485 * is automatically set for you in the standard translucent decor themes
1486 * such as
1487 * {@link android.R.style#Theme_Holo_NoActionBar_TranslucentDecor},
1488 * {@link android.R.style#Theme_Holo_Light_NoActionBar_TranslucentDecor},
1489 * {@link android.R.style#Theme_DeviceDefault_NoActionBar_TranslucentDecor}, and
1490 * {@link android.R.style#Theme_DeviceDefault_Light_NoActionBar_TranslucentDecor}.</p>
1491 *
1492 * <p>When this flag is enabled for a window, it automatically sets
1493 * the system UI visibility flags {@link View#SYSTEM_UI_FLAG_LAYOUT_STABLE} and
1494 * {@link View#SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION}.</p>
1495 */
1496 public static final int FLAG_TRANSLUCENT_NAVIGATION = 0x08000000;
1497
Adam Lesinski6a591f52013-10-01 18:11:17 -07001498 /**
1499 * Flag for a window in local focus mode.
1500 * Window in local focus mode can control focus independent of window manager using
1501 * {@link Window#setLocalFocus(boolean, boolean)}.
1502 * Usually window in this mode will not get touch/key events from window manager, but will
1503 * get events only via local injection using {@link Window#injectInputEvent(InputEvent)}.
1504 */
1505 public static final int FLAG_LOCAL_FOCUS_MODE = 0x10000000;
1506
Jeff Brown98db5fa2011-06-08 15:37:10 -07001507 /** Window flag: Enable touches to slide out of a window into neighboring
1508 * windows in mid-gesture instead of being captured for the duration of
1509 * the gesture.
1510 *
1511 * This flag changes the behavior of touch focus for this window only.
1512 * Touches can slide out of the window but they cannot necessarily slide
1513 * back in (unless the other window with touch focus permits it).
1514 *
1515 * {@hide}
1516 */
Mathew Inwooda570dee2018-08-17 14:56:00 +01001517 @UnsupportedAppUsage
Adam Lesinski6a591f52013-10-01 18:11:17 -07001518 public static final int FLAG_SLIPPERY = 0x20000000;
Jeff Brown98db5fa2011-06-08 15:37:10 -07001519
Daniel Sandlere02d8082010-10-08 15:13:22 -04001520 /**
Wale Ogunwale393b1c12014-10-18 16:22:01 -07001521 * Window flag: When requesting layout with an attached window, the attached window may
1522 * overlap with the screen decorations of the parent window such as the navigation bar. By
1523 * including this flag, the window manager will layout the attached window within the decor
1524 * frame of the parent window such that it doesn't overlap with screen decorations.
Daniel Sandlere02d8082010-10-08 15:13:22 -04001525 */
Wale Ogunwale393b1c12014-10-18 16:22:01 -07001526 public static final int FLAG_LAYOUT_ATTACHED_IN_DECOR = 0x40000000;
Daniel Sandlere02d8082010-10-08 15:13:22 -04001527
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001528 /**
Adrian Roos217ccd22014-05-09 14:29:04 +02001529 * Flag indicating that this Window is responsible for drawing the background for the
1530 * system bars. If set, the system bars are drawn with a transparent background and the
1531 * corresponding areas in this window are filled with the colors specified in
1532 * {@link Window#getStatusBarColor()} and {@link Window#getNavigationBarColor()}.
1533 */
1534 public static final int FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS = 0x80000000;
1535
1536 /**
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001537 * Various behavioral options/flags. Default is none.
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001538 *
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001539 * @see #FLAG_ALLOW_LOCK_WHILE_SCREEN_ON
1540 * @see #FLAG_DIM_BEHIND
1541 * @see #FLAG_NOT_FOCUSABLE
1542 * @see #FLAG_NOT_TOUCHABLE
1543 * @see #FLAG_NOT_TOUCH_MODAL
1544 * @see #FLAG_TOUCHABLE_WHEN_WAKING
1545 * @see #FLAG_KEEP_SCREEN_ON
1546 * @see #FLAG_LAYOUT_IN_SCREEN
1547 * @see #FLAG_LAYOUT_NO_LIMITS
1548 * @see #FLAG_FULLSCREEN
1549 * @see #FLAG_FORCE_NOT_FULLSCREEN
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001550 * @see #FLAG_SECURE
1551 * @see #FLAG_SCALED
1552 * @see #FLAG_IGNORE_CHEEK_PRESSES
1553 * @see #FLAG_LAYOUT_INSET_DECOR
1554 * @see #FLAG_ALT_FOCUSABLE_IM
1555 * @see #FLAG_WATCH_OUTSIDE_TOUCH
1556 * @see #FLAG_SHOW_WHEN_LOCKED
1557 * @see #FLAG_SHOW_WALLPAPER
1558 * @see #FLAG_TURN_SCREEN_ON
1559 * @see #FLAG_DISMISS_KEYGUARD
1560 * @see #FLAG_SPLIT_TOUCH
1561 * @see #FLAG_HARDWARE_ACCELERATED
keunyoung30f420f2013-08-02 14:23:10 -07001562 * @see #FLAG_LOCAL_FOCUS_MODE
Adrian Roos217ccd22014-05-09 14:29:04 +02001563 * @see #FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001564 */
1565 @ViewDebug.ExportedProperty(flagMapping = {
1566 @ViewDebug.FlagToString(mask = FLAG_ALLOW_LOCK_WHILE_SCREEN_ON, equals = FLAG_ALLOW_LOCK_WHILE_SCREEN_ON,
Jorim Jaggi484851b2017-09-22 16:03:27 +02001567 name = "ALLOW_LOCK_WHILE_SCREEN_ON"),
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001568 @ViewDebug.FlagToString(mask = FLAG_DIM_BEHIND, equals = FLAG_DIM_BEHIND,
Jorim Jaggi484851b2017-09-22 16:03:27 +02001569 name = "DIM_BEHIND"),
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001570 @ViewDebug.FlagToString(mask = FLAG_BLUR_BEHIND, equals = FLAG_BLUR_BEHIND,
Jorim Jaggi484851b2017-09-22 16:03:27 +02001571 name = "BLUR_BEHIND"),
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001572 @ViewDebug.FlagToString(mask = FLAG_NOT_FOCUSABLE, equals = FLAG_NOT_FOCUSABLE,
Jorim Jaggi484851b2017-09-22 16:03:27 +02001573 name = "NOT_FOCUSABLE"),
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001574 @ViewDebug.FlagToString(mask = FLAG_NOT_TOUCHABLE, equals = FLAG_NOT_TOUCHABLE,
Jorim Jaggi484851b2017-09-22 16:03:27 +02001575 name = "NOT_TOUCHABLE"),
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001576 @ViewDebug.FlagToString(mask = FLAG_NOT_TOUCH_MODAL, equals = FLAG_NOT_TOUCH_MODAL,
Jorim Jaggi484851b2017-09-22 16:03:27 +02001577 name = "NOT_TOUCH_MODAL"),
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001578 @ViewDebug.FlagToString(mask = FLAG_TOUCHABLE_WHEN_WAKING, equals = FLAG_TOUCHABLE_WHEN_WAKING,
Jorim Jaggi484851b2017-09-22 16:03:27 +02001579 name = "TOUCHABLE_WHEN_WAKING"),
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001580 @ViewDebug.FlagToString(mask = FLAG_KEEP_SCREEN_ON, equals = FLAG_KEEP_SCREEN_ON,
Jorim Jaggi484851b2017-09-22 16:03:27 +02001581 name = "KEEP_SCREEN_ON"),
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001582 @ViewDebug.FlagToString(mask = FLAG_LAYOUT_IN_SCREEN, equals = FLAG_LAYOUT_IN_SCREEN,
Jorim Jaggi484851b2017-09-22 16:03:27 +02001583 name = "LAYOUT_IN_SCREEN"),
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001584 @ViewDebug.FlagToString(mask = FLAG_LAYOUT_NO_LIMITS, equals = FLAG_LAYOUT_NO_LIMITS,
Jorim Jaggi484851b2017-09-22 16:03:27 +02001585 name = "LAYOUT_NO_LIMITS"),
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001586 @ViewDebug.FlagToString(mask = FLAG_FULLSCREEN, equals = FLAG_FULLSCREEN,
Jorim Jaggi484851b2017-09-22 16:03:27 +02001587 name = "FULLSCREEN"),
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001588 @ViewDebug.FlagToString(mask = FLAG_FORCE_NOT_FULLSCREEN, equals = FLAG_FORCE_NOT_FULLSCREEN,
Jorim Jaggi484851b2017-09-22 16:03:27 +02001589 name = "FORCE_NOT_FULLSCREEN"),
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001590 @ViewDebug.FlagToString(mask = FLAG_DITHER, equals = FLAG_DITHER,
Jorim Jaggi484851b2017-09-22 16:03:27 +02001591 name = "DITHER"),
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001592 @ViewDebug.FlagToString(mask = FLAG_SECURE, equals = FLAG_SECURE,
Jorim Jaggi484851b2017-09-22 16:03:27 +02001593 name = "SECURE"),
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001594 @ViewDebug.FlagToString(mask = FLAG_SCALED, equals = FLAG_SCALED,
Jorim Jaggi484851b2017-09-22 16:03:27 +02001595 name = "SCALED"),
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001596 @ViewDebug.FlagToString(mask = FLAG_IGNORE_CHEEK_PRESSES, equals = FLAG_IGNORE_CHEEK_PRESSES,
Jorim Jaggi484851b2017-09-22 16:03:27 +02001597 name = "IGNORE_CHEEK_PRESSES"),
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001598 @ViewDebug.FlagToString(mask = FLAG_LAYOUT_INSET_DECOR, equals = FLAG_LAYOUT_INSET_DECOR,
Jorim Jaggi484851b2017-09-22 16:03:27 +02001599 name = "LAYOUT_INSET_DECOR"),
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001600 @ViewDebug.FlagToString(mask = FLAG_ALT_FOCUSABLE_IM, equals = FLAG_ALT_FOCUSABLE_IM,
Jorim Jaggi484851b2017-09-22 16:03:27 +02001601 name = "ALT_FOCUSABLE_IM"),
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001602 @ViewDebug.FlagToString(mask = FLAG_WATCH_OUTSIDE_TOUCH, equals = FLAG_WATCH_OUTSIDE_TOUCH,
Jorim Jaggi484851b2017-09-22 16:03:27 +02001603 name = "WATCH_OUTSIDE_TOUCH"),
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001604 @ViewDebug.FlagToString(mask = FLAG_SHOW_WHEN_LOCKED, equals = FLAG_SHOW_WHEN_LOCKED,
Jorim Jaggi484851b2017-09-22 16:03:27 +02001605 name = "SHOW_WHEN_LOCKED"),
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001606 @ViewDebug.FlagToString(mask = FLAG_SHOW_WALLPAPER, equals = FLAG_SHOW_WALLPAPER,
Jorim Jaggi484851b2017-09-22 16:03:27 +02001607 name = "SHOW_WALLPAPER"),
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001608 @ViewDebug.FlagToString(mask = FLAG_TURN_SCREEN_ON, equals = FLAG_TURN_SCREEN_ON,
Jorim Jaggi484851b2017-09-22 16:03:27 +02001609 name = "TURN_SCREEN_ON"),
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001610 @ViewDebug.FlagToString(mask = FLAG_DISMISS_KEYGUARD, equals = FLAG_DISMISS_KEYGUARD,
Jorim Jaggi484851b2017-09-22 16:03:27 +02001611 name = "DISMISS_KEYGUARD"),
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001612 @ViewDebug.FlagToString(mask = FLAG_SPLIT_TOUCH, equals = FLAG_SPLIT_TOUCH,
Jorim Jaggi484851b2017-09-22 16:03:27 +02001613 name = "SPLIT_TOUCH"),
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001614 @ViewDebug.FlagToString(mask = FLAG_HARDWARE_ACCELERATED, equals = FLAG_HARDWARE_ACCELERATED,
Jorim Jaggi484851b2017-09-22 16:03:27 +02001615 name = "HARDWARE_ACCELERATED"),
1616 @ViewDebug.FlagToString(mask = FLAG_LAYOUT_IN_OVERSCAN, equals = FLAG_LAYOUT_IN_OVERSCAN,
1617 name = "LOCAL_FOCUS_MODE"),
John Spurlockbd957402013-10-03 11:38:39 -04001618 @ViewDebug.FlagToString(mask = FLAG_TRANSLUCENT_STATUS, equals = FLAG_TRANSLUCENT_STATUS,
Jorim Jaggi484851b2017-09-22 16:03:27 +02001619 name = "TRANSLUCENT_STATUS"),
John Spurlockbd957402013-10-03 11:38:39 -04001620 @ViewDebug.FlagToString(mask = FLAG_TRANSLUCENT_NAVIGATION, equals = FLAG_TRANSLUCENT_NAVIGATION,
Jorim Jaggi484851b2017-09-22 16:03:27 +02001621 name = "TRANSLUCENT_NAVIGATION"),
1622 @ViewDebug.FlagToString(mask = FLAG_LOCAL_FOCUS_MODE, equals = FLAG_LOCAL_FOCUS_MODE,
1623 name = "LOCAL_FOCUS_MODE"),
1624 @ViewDebug.FlagToString(mask = FLAG_SLIPPERY, equals = FLAG_SLIPPERY,
1625 name = "FLAG_SLIPPERY"),
1626 @ViewDebug.FlagToString(mask = FLAG_LAYOUT_ATTACHED_IN_DECOR, equals = FLAG_LAYOUT_ATTACHED_IN_DECOR,
1627 name = "FLAG_LAYOUT_ATTACHED_IN_DECOR"),
Adrian Roos217ccd22014-05-09 14:29:04 +02001628 @ViewDebug.FlagToString(mask = FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS, equals = FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS,
Jorim Jaggi484851b2017-09-22 16:03:27 +02001629 name = "DRAWS_SYSTEM_BAR_BACKGROUNDS")
Jon Miranda4597e982014-07-29 07:25:49 -07001630 }, formatToHexString = true)
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001631 public int flags;
1632
1633 /**
John Reck61375a82014-09-18 19:27:48 +00001634 * If the window has requested hardware acceleration, but this is not
1635 * allowed in the process it is in, then still render it as if it is
1636 * hardware accelerated. This is used for the starting preview windows
1637 * in the system process, which don't need to have the overhead of
1638 * hardware acceleration (they are just a static rendering), but should
1639 * be rendered as such to match the actual window of the app even if it
1640 * is hardware accelerated.
1641 * Even if the window isn't hardware accelerated, still do its rendering
1642 * as if it was.
1643 * Like {@link #FLAG_HARDWARE_ACCELERATED} except for trusted system windows
1644 * that need hardware acceleration (e.g. LockScreen), where hardware acceleration
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001645 * is generally disabled. This flag must be specified in addition to
John Reck61375a82014-09-18 19:27:48 +00001646 * {@link #FLAG_HARDWARE_ACCELERATED} to enable hardware acceleration for system
1647 * windows.
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001648 *
John Reck61375a82014-09-18 19:27:48 +00001649 * @hide
1650 */
1651 public static final int PRIVATE_FLAG_FAKE_HARDWARE_ACCELERATED = 0x00000001;
1652
1653 /**
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001654 * In the system process, we globally do not use hardware acceleration
Ken Wakasaf76a50c2012-03-09 19:56:35 +09001655 * because there are many threads doing UI there and they conflict.
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001656 * If certain parts of the UI that really do want to use hardware
1657 * acceleration, this flag can be set to force it. This is basically
1658 * for the lock screen. Anyone else using it, you are probably wrong.
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001659 *
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001660 * @hide
1661 */
1662 public static final int PRIVATE_FLAG_FORCE_HARDWARE_ACCELERATED = 0x00000002;
1663
1664 /**
Chet Haasea8e5a2b2011-10-28 13:18:16 -07001665 * By default, wallpapers are sent new offsets when the wallpaper is scrolled. Wallpapers
Ken Wakasaf76a50c2012-03-09 19:56:35 +09001666 * may elect to skip these notifications if they are not doing anything productive with
Chet Haasea8e5a2b2011-10-28 13:18:16 -07001667 * them (they do not affect the wallpaper scrolling operation) by calling
1668 * {@link
1669 * android.service.wallpaper.WallpaperService.Engine#setOffsetNotificationsEnabled(boolean)}.
1670 *
1671 * @hide
1672 */
1673 public static final int PRIVATE_FLAG_WANTS_OFFSET_NOTIFICATIONS = 0x00000004;
1674
Craig Mautner88400d32012-09-30 12:35:45 -07001675 /** In a multiuser system if this flag is set and the owner is a system process then this
1676 * window will appear on all user screens. This overrides the default behavior of window
1677 * types that normally only appear on the owning user's screen. Refer to each window type
1678 * to determine its default behavior.
1679 *
1680 * {@hide} */
Mathew Inwooda570dee2018-08-17 14:56:00 +01001681 @UnsupportedAppUsage
Craig Mautner88400d32012-09-30 12:35:45 -07001682 public static final int PRIVATE_FLAG_SHOW_FOR_ALL_USERS = 0x00000010;
1683
Dianne Hackborn73ab6a42011-12-13 11:16:23 -08001684 /**
Dianne Hackborn1c5383c2013-04-15 15:07:21 -07001685 * Never animate position changes of the window.
1686 *
Robert Carrb48380a2017-04-04 14:56:37 -07001687 * {@hide}
1688 */
Artur Satayev5a525852019-10-31 15:15:50 +00001689 @UnsupportedAppUsage
Robert Carrb48380a2017-04-04 14:56:37 -07001690 @TestApi
Dianne Hackborn1c5383c2013-04-15 15:07:21 -07001691 public static final int PRIVATE_FLAG_NO_MOVE_ANIMATION = 0x00000040;
1692
Adam Lesinski6a591f52013-10-01 18:11:17 -07001693 /** Window flag: special flag to limit the size of the window to be
1694 * original size ([320x480] x density). Used to create window for applications
1695 * running under compatibility mode.
1696 *
1697 * {@hide} */
1698 public static final int PRIVATE_FLAG_COMPATIBLE_WINDOW = 0x00000080;
1699
1700 /** Window flag: a special option intended for system dialogs. When
1701 * this flag is set, the window will demand focus unconditionally when
1702 * it is created.
1703 * {@hide} */
1704 public static final int PRIVATE_FLAG_SYSTEM_ERROR = 0x00000100;
1705
John Spurlock3f7cd512013-10-07 12:25:09 -04001706 /** Window flag: maintain the previous translucent decor state when this window
John Spurlockbd957402013-10-03 11:38:39 -04001707 * becomes top-most.
1708 * {@hide} */
1709 public static final int PRIVATE_FLAG_INHERIT_TRANSLUCENT_DECOR = 0x00000200;
1710
Dianne Hackborn1c5383c2013-04-15 15:07:21 -07001711 /**
Jorim Jaggi380ecb82014-03-14 17:25:20 +01001712 * Flag whether the current window is a keyguard window, meaning that it will hide all other
1713 * windows behind it except for windows with flag {@link #FLAG_SHOW_WHEN_LOCKED} set.
1714 * Further, this can only be set by {@link LayoutParams#TYPE_STATUS_BAR}.
1715 * {@hide}
1716 */
1717 public static final int PRIVATE_FLAG_KEYGUARD = 0x00000400;
1718
1719 /**
Filip Gruszczynskib8c06942014-12-04 15:02:18 -08001720 * Flag that prevents the wallpaper behind the current window from receiving touch events.
1721 *
1722 * {@hide}
1723 */
1724 public static final int PRIVATE_FLAG_DISABLE_WALLPAPER_TOUCH_EVENTS = 0x00000800;
1725
1726 /**
Selim Cinek4a4a2bddc2015-05-07 12:50:19 -07001727 * Flag to force the status bar window to be visible all the time. If the bar is hidden when
1728 * this flag is set it will be shown again and the bar will have a transparent background.
1729 * This can only be set by {@link LayoutParams#TYPE_STATUS_BAR}.
1730 *
1731 * {@hide}
1732 */
1733 public static final int PRIVATE_FLAG_FORCE_STATUS_BAR_VISIBLE_TRANSPARENT = 0x00001000;
1734
1735 /**
Robert Carr64aadd02015-11-06 13:54:20 -08001736 * Flag indicating that the x, y, width, and height members should be
Filip Gruszczynski1a4dfe52015-11-15 10:58:57 -08001737 * ignored (and thus their previous value preserved). For example
Robert Carr64aadd02015-11-06 13:54:20 -08001738 * because they are being managed externally through repositionChild.
1739 *
1740 * {@hide}
1741 */
1742 public static final int PRIVATE_FLAG_PRESERVE_GEOMETRY = 0x00002000;
1743
Filip Gruszczynski1a4dfe52015-11-15 10:58:57 -08001744 /**
1745 * Flag that will make window ignore app visibility and instead depend purely on the decor
1746 * view visibility for determining window visibility. This is used by recents to keep
1747 * drawing after it launches an app.
1748 * @hide
1749 */
1750 public static final int PRIVATE_FLAG_FORCE_DECOR_VIEW_VISIBILITY = 0x00004000;
1751
Robert Carra1eb4392015-12-10 12:43:51 -08001752 /**
1753 * Flag to indicate that this window is not expected to be replaced across
1754 * configuration change triggered activity relaunches. In general the WindowManager
1755 * expects Windows to be replaced after relaunch, and thus it will preserve their surfaces
1756 * until the replacement is ready to show in order to prevent visual glitch. However
1757 * some windows, such as PopupWindows expect to be cleared across configuration change,
1758 * and thus should hint to the WindowManager that it should not wait for a replacement.
1759 * @hide
1760 */
1761 public static final int PRIVATE_FLAG_WILL_NOT_REPLACE_ON_RELAUNCH = 0x00008000;
Robert Carr64aadd02015-11-06 13:54:20 -08001762
1763 /**
Wale Ogunwale8216eb22015-12-18 10:42:42 -08001764 * Flag to indicate that this child window should always be laid-out in the parent
1765 * frame regardless of the current windowing mode configuration.
1766 * @hide
1767 */
1768 public static final int PRIVATE_FLAG_LAYOUT_CHILD_WINDOW_IN_PARENT_FRAME = 0x00010000;
1769
1770 /**
Jorim Jaggi8f5701b2016-04-04 18:36:02 -07001771 * Flag to indicate that this window is always drawing the status bar background, no matter
1772 * what the other flags are.
1773 * @hide
1774 */
Jorim Jaggia6aabac2019-03-11 14:23:16 -07001775 public static final int PRIVATE_FLAG_FORCE_DRAW_BAR_BACKGROUNDS = 0x00020000;
Jorim Jaggi8f5701b2016-04-04 18:36:02 -07001776
1777 /**
Ruchi Kandoi43e38de2016-04-14 19:34:53 -07001778 * Flag to indicate that this window needs Sustained Performance Mode if
1779 * the device supports it.
1780 * @hide
1781 */
John Reck60e885f2016-04-21 15:40:45 -07001782 public static final int PRIVATE_FLAG_SUSTAINED_PERFORMANCE_MODE = 0x00040000;
Ruchi Kandoi43e38de2016-04-14 19:34:53 -07001783
1784 /**
Wale Ogunwale01ad4342017-06-30 07:07:01 -07001785 * Flag to indicate that any window added by an application process that is of type
1786 * {@link #TYPE_TOAST} or that requires
1787 * {@link android.app.AppOpsManager#OP_SYSTEM_ALERT_WINDOW} permission should be hidden when
1788 * this window is visible.
Jorim Jaggi02886a82016-12-06 09:10:06 -08001789 * @hide
1790 */
Philip P. Moltmannd66dd992018-09-17 11:26:04 -07001791 @SystemApi
Wale Ogunwalec0b0f932017-11-01 12:51:43 -07001792 @RequiresPermission(permission.HIDE_NON_SYSTEM_OVERLAY_WINDOWS)
Philip P. Moltmann66ce2382018-10-09 13:46:11 -07001793 public static final int SYSTEM_FLAG_HIDE_NON_SYSTEM_OVERLAY_WINDOWS = 0x00080000;
Jorim Jaggi02886a82016-12-06 09:10:06 -08001794
1795 /**
Robert Carr132c9f52017-07-31 17:02:30 -07001796 * Indicates that this window is the rounded corners overlay present on some
1797 * devices this means that it will be excluded from: screenshots,
1798 * screen magnification, and mirroring.
Phil Weaverd321075e2017-06-13 09:13:35 -07001799 * @hide
1800 */
Robert Carr132c9f52017-07-31 17:02:30 -07001801 public static final int PRIVATE_FLAG_IS_ROUNDED_CORNERS_OVERLAY = 0x00100000;
Phil Weaverd321075e2017-06-13 09:13:35 -07001802
1803 /**
Wale Ogunwalec0b0f932017-11-01 12:51:43 -07001804 * Flag to indicate that this window should be considered a screen decoration similar to the
1805 * nav bar and status bar. This will cause this window to affect the window insets reported
1806 * to other windows when it is visible.
1807 * @hide
1808 */
1809 @RequiresPermission(permission.STATUS_BAR_SERVICE)
1810 public static final int PRIVATE_FLAG_IS_SCREEN_DECOR = 0x00400000;
1811
1812 /**
Tiger Huanga90dea42018-08-03 17:20:17 +08001813 * Flag to indicate that the status bar window is in a state such that it forces showing
1814 * the navigation bar unless the navigation bar window is explicitly set to
1815 * {@link View#GONE}.
1816 * It only takes effects if this is set by {@link LayoutParams#TYPE_STATUS_BAR}.
Tiger Huang34046012018-06-29 15:26:52 +08001817 * @hide
1818 */
Tiger Huanga90dea42018-08-03 17:20:17 +08001819 public static final int PRIVATE_FLAG_STATUS_FORCE_SHOW_NAVIGATION = 0x00800000;
Tiger Huang34046012018-06-29 15:26:52 +08001820
1821 /**
Peiyong Lin75045382019-03-04 19:22:33 -08001822 * Flag to indicate that the window is color space agnostic, and the color can be
1823 * interpreted to any color space.
1824 * @hide
1825 */
1826 public static final int PRIVATE_FLAG_COLOR_SPACE_AGNOSTIC = 0x01000000;
1827
1828 /**
Philip P. Moltmann66ce2382018-10-09 13:46:11 -07001829 * An internal annotation for flags that can be specified to {@link #softInputMode}.
1830 *
1831 * @hide
1832 */
1833 @SystemApi
1834 @Retention(RetentionPolicy.SOURCE)
1835 @IntDef(flag = true, prefix = { "SYSTEM_FLAG_" }, value = {
1836 SYSTEM_FLAG_HIDE_NON_SYSTEM_OVERLAY_WINDOWS,
1837 })
1838 public @interface SystemFlags {}
1839
1840 /**
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001841 * Control flags that are private to the platform.
1842 * @hide
1843 */
Jorim Jaggi484851b2017-09-22 16:03:27 +02001844 @ViewDebug.ExportedProperty(flagMapping = {
1845 @ViewDebug.FlagToString(
1846 mask = PRIVATE_FLAG_FAKE_HARDWARE_ACCELERATED,
1847 equals = PRIVATE_FLAG_FAKE_HARDWARE_ACCELERATED,
1848 name = "FAKE_HARDWARE_ACCELERATED"),
1849 @ViewDebug.FlagToString(
1850 mask = PRIVATE_FLAG_FORCE_HARDWARE_ACCELERATED,
1851 equals = PRIVATE_FLAG_FORCE_HARDWARE_ACCELERATED,
1852 name = "FORCE_HARDWARE_ACCELERATED"),
1853 @ViewDebug.FlagToString(
1854 mask = PRIVATE_FLAG_WANTS_OFFSET_NOTIFICATIONS,
1855 equals = PRIVATE_FLAG_WANTS_OFFSET_NOTIFICATIONS,
1856 name = "WANTS_OFFSET_NOTIFICATIONS"),
1857 @ViewDebug.FlagToString(
1858 mask = PRIVATE_FLAG_SHOW_FOR_ALL_USERS,
1859 equals = PRIVATE_FLAG_SHOW_FOR_ALL_USERS,
1860 name = "SHOW_FOR_ALL_USERS"),
1861 @ViewDebug.FlagToString(
1862 mask = PRIVATE_FLAG_NO_MOVE_ANIMATION,
1863 equals = PRIVATE_FLAG_NO_MOVE_ANIMATION,
1864 name = "NO_MOVE_ANIMATION"),
1865 @ViewDebug.FlagToString(
1866 mask = PRIVATE_FLAG_COMPATIBLE_WINDOW,
1867 equals = PRIVATE_FLAG_COMPATIBLE_WINDOW,
1868 name = "COMPATIBLE_WINDOW"),
1869 @ViewDebug.FlagToString(
1870 mask = PRIVATE_FLAG_SYSTEM_ERROR,
1871 equals = PRIVATE_FLAG_SYSTEM_ERROR,
1872 name = "SYSTEM_ERROR"),
1873 @ViewDebug.FlagToString(
1874 mask = PRIVATE_FLAG_INHERIT_TRANSLUCENT_DECOR,
1875 equals = PRIVATE_FLAG_INHERIT_TRANSLUCENT_DECOR,
1876 name = "INHERIT_TRANSLUCENT_DECOR"),
1877 @ViewDebug.FlagToString(
1878 mask = PRIVATE_FLAG_KEYGUARD,
1879 equals = PRIVATE_FLAG_KEYGUARD,
1880 name = "KEYGUARD"),
1881 @ViewDebug.FlagToString(
1882 mask = PRIVATE_FLAG_DISABLE_WALLPAPER_TOUCH_EVENTS,
1883 equals = PRIVATE_FLAG_DISABLE_WALLPAPER_TOUCH_EVENTS,
1884 name = "DISABLE_WALLPAPER_TOUCH_EVENTS"),
1885 @ViewDebug.FlagToString(
1886 mask = PRIVATE_FLAG_FORCE_STATUS_BAR_VISIBLE_TRANSPARENT,
1887 equals = PRIVATE_FLAG_FORCE_STATUS_BAR_VISIBLE_TRANSPARENT,
1888 name = "FORCE_STATUS_BAR_VISIBLE_TRANSPARENT"),
1889 @ViewDebug.FlagToString(
1890 mask = PRIVATE_FLAG_PRESERVE_GEOMETRY,
1891 equals = PRIVATE_FLAG_PRESERVE_GEOMETRY,
1892 name = "PRESERVE_GEOMETRY"),
1893 @ViewDebug.FlagToString(
1894 mask = PRIVATE_FLAG_FORCE_DECOR_VIEW_VISIBILITY,
1895 equals = PRIVATE_FLAG_FORCE_DECOR_VIEW_VISIBILITY,
1896 name = "FORCE_DECOR_VIEW_VISIBILITY"),
1897 @ViewDebug.FlagToString(
1898 mask = PRIVATE_FLAG_WILL_NOT_REPLACE_ON_RELAUNCH,
1899 equals = PRIVATE_FLAG_WILL_NOT_REPLACE_ON_RELAUNCH,
1900 name = "WILL_NOT_REPLACE_ON_RELAUNCH"),
1901 @ViewDebug.FlagToString(
1902 mask = PRIVATE_FLAG_LAYOUT_CHILD_WINDOW_IN_PARENT_FRAME,
1903 equals = PRIVATE_FLAG_LAYOUT_CHILD_WINDOW_IN_PARENT_FRAME,
1904 name = "LAYOUT_CHILD_WINDOW_IN_PARENT_FRAME"),
1905 @ViewDebug.FlagToString(
Jorim Jaggia6aabac2019-03-11 14:23:16 -07001906 mask = PRIVATE_FLAG_FORCE_DRAW_BAR_BACKGROUNDS,
1907 equals = PRIVATE_FLAG_FORCE_DRAW_BAR_BACKGROUNDS,
Jorim Jaggi484851b2017-09-22 16:03:27 +02001908 name = "FORCE_DRAW_STATUS_BAR_BACKGROUND"),
1909 @ViewDebug.FlagToString(
1910 mask = PRIVATE_FLAG_SUSTAINED_PERFORMANCE_MODE,
1911 equals = PRIVATE_FLAG_SUSTAINED_PERFORMANCE_MODE,
1912 name = "SUSTAINED_PERFORMANCE_MODE"),
1913 @ViewDebug.FlagToString(
Philip P. Moltmann66ce2382018-10-09 13:46:11 -07001914 mask = SYSTEM_FLAG_HIDE_NON_SYSTEM_OVERLAY_WINDOWS,
1915 equals = SYSTEM_FLAG_HIDE_NON_SYSTEM_OVERLAY_WINDOWS,
Jorim Jaggi484851b2017-09-22 16:03:27 +02001916 name = "HIDE_NON_SYSTEM_OVERLAY_WINDOWS"),
1917 @ViewDebug.FlagToString(
1918 mask = PRIVATE_FLAG_IS_ROUNDED_CORNERS_OVERLAY,
1919 equals = PRIVATE_FLAG_IS_ROUNDED_CORNERS_OVERLAY,
1920 name = "IS_ROUNDED_CORNERS_OVERLAY"),
1921 @ViewDebug.FlagToString(
Wale Ogunwalec0b0f932017-11-01 12:51:43 -07001922 mask = PRIVATE_FLAG_IS_SCREEN_DECOR,
1923 equals = PRIVATE_FLAG_IS_SCREEN_DECOR,
Tiger Huang34046012018-06-29 15:26:52 +08001924 name = "IS_SCREEN_DECOR"),
1925 @ViewDebug.FlagToString(
Tiger Huanga90dea42018-08-03 17:20:17 +08001926 mask = PRIVATE_FLAG_STATUS_FORCE_SHOW_NAVIGATION,
1927 equals = PRIVATE_FLAG_STATUS_FORCE_SHOW_NAVIGATION,
Peiyong Lin75045382019-03-04 19:22:33 -08001928 name = "STATUS_FORCE_SHOW_NAVIGATION"),
1929 @ViewDebug.FlagToString(
1930 mask = PRIVATE_FLAG_COLOR_SPACE_AGNOSTIC,
1931 equals = PRIVATE_FLAG_COLOR_SPACE_AGNOSTIC,
1932 name = "COLOR_SPACE_AGNOSTIC")
Jorim Jaggi484851b2017-09-22 16:03:27 +02001933 })
Artur Satayev5a525852019-10-31 15:15:50 +00001934 @UnsupportedAppUsage
Robert Carrb48380a2017-04-04 14:56:37 -07001935 @TestApi
Dianne Hackborn5d927c22011-09-02 12:22:18 -07001936 public int privateFlags;
1937
1938 /**
Wale Ogunwale393b1c12014-10-18 16:22:01 -07001939 * Value for {@link #needsMenuKey} for a window that has not explicitly specified if it
1940 * needs {@link #NEEDS_MENU_SET_TRUE} or doesn't need {@link #NEEDS_MENU_SET_FALSE} a menu
1941 * key. For this case, we should look at windows behind it to determine the appropriate
1942 * value.
1943 *
1944 * @hide
1945 */
1946 public static final int NEEDS_MENU_UNSET = 0;
1947
1948 /**
1949 * Value for {@link #needsMenuKey} for a window that has explicitly specified it needs a
1950 * menu key.
1951 *
1952 * @hide
1953 */
Mathew Inwooda570dee2018-08-17 14:56:00 +01001954 @UnsupportedAppUsage
Wale Ogunwale393b1c12014-10-18 16:22:01 -07001955 public static final int NEEDS_MENU_SET_TRUE = 1;
1956
1957 /**
1958 * Value for {@link #needsMenuKey} for a window that has explicitly specified it doesn't
1959 * needs a menu key.
1960 *
1961 * @hide
1962 */
Mathew Inwooda570dee2018-08-17 14:56:00 +01001963 @UnsupportedAppUsage
Wale Ogunwale393b1c12014-10-18 16:22:01 -07001964 public static final int NEEDS_MENU_SET_FALSE = 2;
1965
1966 /**
1967 * State variable for a window belonging to an activity that responds to
1968 * {@link KeyEvent#KEYCODE_MENU} and therefore needs a Menu key. For devices where Menu is a
1969 * physical button this variable is ignored, but on devices where the Menu key is drawn in
1970 * software it may be hidden unless this variable is set to {@link #NEEDS_MENU_SET_TRUE}.
1971 *
1972 * (Note that Action Bars, when available, are the preferred way to offer additional
1973 * functions otherwise accessed via an options menu.)
1974 *
1975 * {@hide}
1976 */
Mathew Inwooda570dee2018-08-17 14:56:00 +01001977 @UnsupportedAppUsage
Wale Ogunwale393b1c12014-10-18 16:22:01 -07001978 public int needsMenuKey = NEEDS_MENU_UNSET;
1979
1980 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001981 * Given a particular set of window manager flags, determine whether
1982 * such a window may be a target for an input method when it has
1983 * focus. In particular, this checks the
1984 * {@link #FLAG_NOT_FOCUSABLE} and {@link #FLAG_ALT_FOCUSABLE_IM}
1985 * flags and returns true if the combination of the two corresponds
1986 * to a window that needs to be behind the input method so that the
1987 * user can type into it.
Wale Ogunwale393b1c12014-10-18 16:22:01 -07001988 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001989 * @param flags The current window manager flags.
Wale Ogunwale393b1c12014-10-18 16:22:01 -07001990 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001991 * @return Returns true if such a window should be behind/interact
1992 * with an input method, false if not.
1993 */
1994 public static boolean mayUseInputMethod(int flags) {
1995 switch (flags&(FLAG_NOT_FOCUSABLE|FLAG_ALT_FOCUSABLE_IM)) {
1996 case 0:
1997 case FLAG_NOT_FOCUSABLE|FLAG_ALT_FOCUSABLE_IM:
1998 return true;
1999 }
2000 return false;
2001 }
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002002
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002003 /**
2004 * Mask for {@link #softInputMode} of the bits that determine the
2005 * desired visibility state of the soft input area for this window.
2006 */
2007 public static final int SOFT_INPUT_MASK_STATE = 0x0f;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002008
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002009 /**
Yohei Yukawaa7547852018-03-27 15:47:45 -07002010 * Visibility state for {@link #softInputMode}: no state has been specified. The system may
2011 * show or hide the software keyboard for better user experience when the window gains
2012 * focus.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002013 */
2014 public static final int SOFT_INPUT_STATE_UNSPECIFIED = 0;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002015
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002016 /**
2017 * Visibility state for {@link #softInputMode}: please don't change the state of
2018 * the soft input area.
2019 */
2020 public static final int SOFT_INPUT_STATE_UNCHANGED = 1;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002021
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002022 /**
2023 * Visibility state for {@link #softInputMode}: please hide any soft input
2024 * area when normally appropriate (when the user is navigating
2025 * forward to your window).
2026 */
2027 public static final int SOFT_INPUT_STATE_HIDDEN = 2;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002028
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002029 /**
2030 * Visibility state for {@link #softInputMode}: please always hide any
2031 * soft input area when this window receives focus.
2032 */
2033 public static final int SOFT_INPUT_STATE_ALWAYS_HIDDEN = 3;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002034
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002035 /**
2036 * Visibility state for {@link #softInputMode}: please show the soft
2037 * input area when normally appropriate (when the user is navigating
2038 * forward to your window).
Yohei Yukawacf68d522017-12-12 09:33:26 -08002039 *
2040 * <p>Applications that target {@link android.os.Build.VERSION_CODES#P} and later, this flag
2041 * is ignored unless there is a focused view that returns {@code true} from
2042 * {@link View#isInEditMode()} when the window is focused.</p>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002043 */
2044 public static final int SOFT_INPUT_STATE_VISIBLE = 4;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002045
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002046 /**
2047 * Visibility state for {@link #softInputMode}: please always make the
2048 * soft input area visible when this window receives input focus.
Yohei Yukawacf68d522017-12-12 09:33:26 -08002049 *
2050 * <p>Applications that target {@link android.os.Build.VERSION_CODES#P} and later, this flag
2051 * is ignored unless there is a focused view that returns {@code true} from
2052 * {@link View#isInEditMode()} when the window is focused.</p>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002053 */
2054 public static final int SOFT_INPUT_STATE_ALWAYS_VISIBLE = 5;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002055
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002056 /**
2057 * Mask for {@link #softInputMode} of the bits that determine the
2058 * way that the window should be adjusted to accommodate the soft
2059 * input window.
2060 */
2061 public static final int SOFT_INPUT_MASK_ADJUST = 0xf0;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002062
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002063 /** Adjustment option for {@link #softInputMode}: nothing specified.
2064 * The system will try to pick one or
2065 * the other depending on the contents of the window.
2066 */
2067 public static final int SOFT_INPUT_ADJUST_UNSPECIFIED = 0x00;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002068
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002069 /** Adjustment option for {@link #softInputMode}: set to allow the
2070 * window to be resized when an input
2071 * method is shown, so that its contents are not covered by the input
Scott Mainf10e6332010-06-11 09:03:22 -07002072 * method. This can <em>not</em> be combined with
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002073 * {@link #SOFT_INPUT_ADJUST_PAN}; if
2074 * neither of these are set, then the system will try to pick one or
Chet Haase45c89c22013-04-29 16:04:40 -07002075 * the other depending on the contents of the window. If the window's
2076 * layout parameter flags include {@link #FLAG_FULLSCREEN}, this
2077 * value for {@link #softInputMode} will be ignored; the window will
2078 * not resize, but will stay fullscreen.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002079 */
2080 public static final int SOFT_INPUT_ADJUST_RESIZE = 0x10;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002081
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002082 /** Adjustment option for {@link #softInputMode}: set to have a window
2083 * pan when an input method is
2084 * shown, so it doesn't need to deal with resizing but just panned
2085 * by the framework to ensure the current input focus is visible. This
Scott Mainf10e6332010-06-11 09:03:22 -07002086 * can <em>not</em> be combined with {@link #SOFT_INPUT_ADJUST_RESIZE}; if
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002087 * neither of these are set, then the system will try to pick one or
2088 * the other depending on the contents of the window.
2089 */
2090 public static final int SOFT_INPUT_ADJUST_PAN = 0x20;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002091
Dianne Hackborndea3ef72010-10-28 14:24:22 -07002092 /** Adjustment option for {@link #softInputMode}: set to have a window
2093 * not adjust for a shown input method. The window will not be resized,
2094 * and it will not be panned to make its focus visible.
2095 */
2096 public static final int SOFT_INPUT_ADJUST_NOTHING = 0x30;
2097
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002098 /**
2099 * Bit for {@link #softInputMode}: set when the user has navigated
2100 * forward to the window. This is normally set automatically for
2101 * you by the system, though you may want to set it in certain cases
2102 * when you are displaying a window yourself. This flag will always
2103 * be cleared automatically after the window is displayed.
2104 */
2105 public static final int SOFT_INPUT_IS_FORWARD_NAVIGATION = 0x100;
Mike Lockwoodfb73f792009-11-20 11:31:18 -05002106
2107 /**
Yohei Yukawa22dac1c2017-02-12 16:54:16 -08002108 * An internal annotation for flags that can be specified to {@link #softInputMode}.
2109 *
2110 * @hide
2111 */
2112 @Retention(RetentionPolicy.SOURCE)
Jeff Sharkeyce8db992017-12-13 20:05:05 -07002113 @IntDef(flag = true, prefix = { "SOFT_INPUT_" }, value = {
Yohei Yukawa22dac1c2017-02-12 16:54:16 -08002114 SOFT_INPUT_STATE_UNSPECIFIED,
2115 SOFT_INPUT_STATE_UNCHANGED,
2116 SOFT_INPUT_STATE_HIDDEN,
2117 SOFT_INPUT_STATE_ALWAYS_HIDDEN,
2118 SOFT_INPUT_STATE_VISIBLE,
2119 SOFT_INPUT_STATE_ALWAYS_VISIBLE,
2120 SOFT_INPUT_ADJUST_UNSPECIFIED,
2121 SOFT_INPUT_ADJUST_RESIZE,
2122 SOFT_INPUT_ADJUST_PAN,
2123 SOFT_INPUT_ADJUST_NOTHING,
2124 SOFT_INPUT_IS_FORWARD_NAVIGATION,
2125 })
2126 public @interface SoftInputModeFlags {}
2127
2128 /**
Gilles Debunnebe2c4f92011-01-17 15:14:32 -08002129 * Desired operating mode for any soft input area. May be any combination
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002130 * of:
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002131 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002132 * <ul>
2133 * <li> One of the visibility states
2134 * {@link #SOFT_INPUT_STATE_UNSPECIFIED}, {@link #SOFT_INPUT_STATE_UNCHANGED},
Yohei Yukawa22dac1c2017-02-12 16:54:16 -08002135 * {@link #SOFT_INPUT_STATE_HIDDEN}, {@link #SOFT_INPUT_STATE_ALWAYS_HIDDEN},
2136 * {@link #SOFT_INPUT_STATE_VISIBLE}, or {@link #SOFT_INPUT_STATE_ALWAYS_VISIBLE}.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002137 * <li> One of the adjustment options
Yohei Yukawa22dac1c2017-02-12 16:54:16 -08002138 * {@link #SOFT_INPUT_ADJUST_UNSPECIFIED}, {@link #SOFT_INPUT_ADJUST_RESIZE},
2139 * {@link #SOFT_INPUT_ADJUST_PAN}, or {@link #SOFT_INPUT_ADJUST_NOTHING}.
Dianne Hackborn1bf1af62013-02-25 16:48:53 -08002140 * </ul>
2141 *
2142 *
2143 * <p>This flag can be controlled in your theme through the
2144 * {@link android.R.attr#windowSoftInputMode} attribute.</p>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002145 */
Yohei Yukawa22dac1c2017-02-12 16:54:16 -08002146 @SoftInputModeFlags
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002147 public int softInputMode;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002148
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002149 /**
Dianne Hackborn8eb2e242010-11-01 12:31:24 -07002150 * Placement of window within the screen as per {@link Gravity}. Both
2151 * {@link Gravity#apply(int, int, int, android.graphics.Rect, int, int,
2152 * android.graphics.Rect) Gravity.apply} and
2153 * {@link Gravity#applyDisplay(int, android.graphics.Rect, android.graphics.Rect)
2154 * Gravity.applyDisplay} are used during window layout, with this value
2155 * given as the desired gravity. For example you can specify
2156 * {@link Gravity#DISPLAY_CLIP_HORIZONTAL Gravity.DISPLAY_CLIP_HORIZONTAL} and
2157 * {@link Gravity#DISPLAY_CLIP_VERTICAL Gravity.DISPLAY_CLIP_VERTICAL} here
2158 * to control the behavior of
2159 * {@link Gravity#applyDisplay(int, android.graphics.Rect, android.graphics.Rect)
2160 * Gravity.applyDisplay}.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002161 *
2162 * @see Gravity
2163 */
2164 public int gravity;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002165
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002166 /**
2167 * The horizontal margin, as a percentage of the container's width,
Dianne Hackborn8eb2e242010-11-01 12:31:24 -07002168 * between the container and the widget. See
2169 * {@link Gravity#apply(int, int, int, android.graphics.Rect, int, int,
2170 * android.graphics.Rect) Gravity.apply} for how this is used. This
2171 * field is added with {@link #x} to supply the <var>xAdj</var> parameter.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002172 */
2173 public float horizontalMargin;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002174
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002175 /**
2176 * The vertical margin, as a percentage of the container's height,
Dianne Hackborn8eb2e242010-11-01 12:31:24 -07002177 * between the container and the widget. See
2178 * {@link Gravity#apply(int, int, int, android.graphics.Rect, int, int,
2179 * android.graphics.Rect) Gravity.apply} for how this is used. This
2180 * field is added with {@link #y} to supply the <var>yAdj</var> parameter.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002181 */
2182 public float verticalMargin;
Alan Viveretteccb11e12014-07-08 16:04:02 -07002183
2184 /**
2185 * Positive insets between the drawing surface and window content.
2186 *
2187 * @hide
2188 */
Alan Viverette3aa1ffb2014-10-30 12:22:08 -07002189 public final Rect surfaceInsets = new Rect();
Alan Viverette5435a302015-01-29 10:25:34 -08002190
2191 /**
2192 * Whether the surface insets have been manually set. When set to
2193 * {@code false}, the view root will automatically determine the
2194 * appropriate surface insets.
2195 *
2196 * @see #surfaceInsets
2197 * @hide
2198 */
2199 public boolean hasManualSurfaceInsets;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002200
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002201 /**
Wale Ogunwale246c2092016-04-07 14:12:44 -07002202 * Whether the previous surface insets should be used vs. what is currently set. When set
2203 * to {@code true}, the view root will ignore surfaces insets in this object and use what
2204 * it currently has.
2205 *
2206 * @see #surfaceInsets
2207 * @hide
2208 */
2209 public boolean preservePreviousSurfaceInsets = true;
2210
2211 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002212 * The desired bitmap format. May be one of the constants in
Romain Guy48327452017-01-23 17:03:35 -08002213 * {@link android.graphics.PixelFormat}. The choice of format
2214 * might be overridden by {@link #setColorMode(int)}. Default is OPAQUE.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002215 */
2216 public int format;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002217
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002218 /**
2219 * A style resource defining the animations to use for this window.
2220 * This must be a system resource; it can not be an application resource
2221 * because the window manager does not have access to applications.
2222 */
2223 public int windowAnimations;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002224
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002225 /**
2226 * An alpha value to apply to this entire window.
2227 * An alpha of 1.0 means fully opaque and 0.0 means fully transparent
2228 */
2229 public float alpha = 1.0f;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002230
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002231 /**
2232 * When {@link #FLAG_DIM_BEHIND} is set, this is the amount of dimming
2233 * to apply. Range is from 1.0 for completely opaque to 0.0 for no
2234 * dim.
2235 */
2236 public float dimAmount = 1.0f;
Dianne Hackborndea3ef72010-10-28 14:24:22 -07002237
2238 /**
2239 * Default value for {@link #screenBrightness} and {@link #buttonBrightness}
2240 * indicating that the brightness value is not overridden for this window
2241 * and normal brightness policy should be used.
2242 */
2243 public static final float BRIGHTNESS_OVERRIDE_NONE = -1.0f;
2244
2245 /**
2246 * Value for {@link #screenBrightness} and {@link #buttonBrightness}
2247 * indicating that the screen or button backlight brightness should be set
2248 * to the lowest value when this window is in front.
2249 */
2250 public static final float BRIGHTNESS_OVERRIDE_OFF = 0.0f;
2251
2252 /**
2253 * Value for {@link #screenBrightness} and {@link #buttonBrightness}
2254 * indicating that the screen or button backlight brightness should be set
2255 * to the hightest value when this window is in front.
2256 */
2257 public static final float BRIGHTNESS_OVERRIDE_FULL = 1.0f;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002258
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002259 /**
2260 * This can be used to override the user's preferred brightness of
2261 * the screen. A value of less than 0, the default, means to use the
2262 * preferred screen brightness. 0 to 1 adjusts the brightness from
2263 * dark to full bright.
2264 */
Mike Lockwoodfb73f792009-11-20 11:31:18 -05002265 public float screenBrightness = BRIGHTNESS_OVERRIDE_NONE;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002266
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002267 /**
Mike Lockwoodfb73f792009-11-20 11:31:18 -05002268 * This can be used to override the standard behavior of the button and
2269 * keyboard backlights. A value of less than 0, the default, means to
2270 * use the standard backlight behavior. 0 to 1 adjusts the brightness
2271 * from dark to full bright.
2272 */
2273 public float buttonBrightness = BRIGHTNESS_OVERRIDE_NONE;
2274
2275 /**
Robert Carr427ba4f2017-07-17 18:37:06 -07002276 * Unspecified value for {@link #rotationAnimation} indicating
2277 * a lack of preference.
2278 * @hide
2279 */
2280 public static final int ROTATION_ANIMATION_UNSPECIFIED = -1;
2281
2282 /**
Robert Carr652aae42016-10-17 16:48:14 -07002283 * Value for {@link #rotationAnimation} which specifies that this
2284 * window will visually rotate in or out following a rotation.
Craig Mautner3c174372013-02-21 17:54:37 -08002285 */
2286 public static final int ROTATION_ANIMATION_ROTATE = 0;
2287
2288 /**
Robert Carr652aae42016-10-17 16:48:14 -07002289 * Value for {@link #rotationAnimation} which specifies that this
2290 * window will fade in or out following a rotation.
Craig Mautner3c174372013-02-21 17:54:37 -08002291 */
2292 public static final int ROTATION_ANIMATION_CROSSFADE = 1;
2293
2294 /**
Robert Carr652aae42016-10-17 16:48:14 -07002295 * Value for {@link #rotationAnimation} which specifies that this window
2296 * will immediately disappear or appear following a rotation.
Craig Mautner3c174372013-02-21 17:54:37 -08002297 */
2298 public static final int ROTATION_ANIMATION_JUMPCUT = 2;
2299
2300 /**
Robert Carr57d9fbd2016-08-15 12:00:35 -07002301 * Value for {@link #rotationAnimation} to specify seamless rotation mode.
2302 * This works like JUMPCUT but will fall back to CROSSFADE if rotation
Robert Carr652aae42016-10-17 16:48:14 -07002303 * can't be applied without pausing the screen. For example, this is ideal
2304 * for Camera apps which don't want the viewfinder contents to ever rotate
2305 * or fade (and rather to be seamless) but also don't want ROTATION_ANIMATION_JUMPCUT
2306 * during app transition scenarios where seamless rotation can't be applied.
Robert Carr57d9fbd2016-08-15 12:00:35 -07002307 */
2308 public static final int ROTATION_ANIMATION_SEAMLESS = 3;
2309
2310 /**
Craig Mautnerbdcc9a52013-04-19 13:06:53 -07002311 * Define the exit and entry animations used on this window when the device is rotated.
2312 * This only has an affect if the incoming and outgoing topmost
Craig Mautner3c174372013-02-21 17:54:37 -08002313 * opaque windows have the #FLAG_FULLSCREEN bit set and are not covered
Craig Mautnerbdcc9a52013-04-19 13:06:53 -07002314 * by other windows. All other situations default to the
2315 * {@link #ROTATION_ANIMATION_ROTATE} behavior.
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002316 *
Craig Mautner3c174372013-02-21 17:54:37 -08002317 * @see #ROTATION_ANIMATION_ROTATE
2318 * @see #ROTATION_ANIMATION_CROSSFADE
2319 * @see #ROTATION_ANIMATION_JUMPCUT
2320 */
2321 public int rotationAnimation = ROTATION_ANIMATION_ROTATE;
2322
2323 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002324 * Identifier for this window. This will usually be filled in for
2325 * you.
2326 */
2327 public IBinder token = null;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002328
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002329 /**
2330 * Name of the package owning this window.
2331 */
2332 public String packageName = null;
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002333
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002334 /**
2335 * Specific orientation value for a window.
2336 * May be any of the same values allowed
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002337 * for {@link android.content.pm.ActivityInfo#screenOrientation}.
2338 * If not set, a default value of
2339 * {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_UNSPECIFIED}
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002340 * will be used.
2341 */
2342 public int screenOrientation = ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED;
Joe Onorato664644d2011-01-23 17:53:23 -08002343
2344 /**
Michael Wright3f145a22014-07-22 19:46:03 -07002345 * The preferred refresh rate for the window.
2346 *
2347 * This must be one of the supported refresh rates obtained for the display(s) the window
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002348 * is on. The selected refresh rate will be applied to the display's default mode.
2349 *
2350 * This value is ignored if {@link #preferredDisplayModeId} is set.
Michael Wright3f145a22014-07-22 19:46:03 -07002351 *
2352 * @see Display#getSupportedRefreshRates()
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002353 * @deprecated use {@link #preferredDisplayModeId} instead
Michael Wright3f145a22014-07-22 19:46:03 -07002354 */
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002355 @Deprecated
Michael Wright3f145a22014-07-22 19:46:03 -07002356 public float preferredRefreshRate;
2357
2358 /**
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002359 * Id of the preferred display mode for the window.
2360 * <p>
2361 * This must be one of the supported modes obtained for the display(s) the window is on.
2362 * A value of {@code 0} means no preference.
2363 *
2364 * @see Display#getSupportedModes()
2365 * @see Display.Mode#getModeId()
2366 */
2367 public int preferredDisplayModeId;
2368
2369 /**
Joe Onorato664644d2011-01-23 17:53:23 -08002370 * Control the visibility of the status bar.
Joe Onorato14782f72011-01-25 19:53:17 -08002371 *
2372 * @see View#STATUS_BAR_VISIBLE
2373 * @see View#STATUS_BAR_HIDDEN
Joe Onorato664644d2011-01-23 17:53:23 -08002374 */
2375 public int systemUiVisibility;
2376
2377 /**
Joe Onorato14782f72011-01-25 19:53:17 -08002378 * @hide
2379 * The ui visibility as requested by the views in this hierarchy.
2380 * the combined value should be systemUiVisibility | subtreeSystemUiVisibility.
2381 */
Mathew Inwooda570dee2018-08-17 14:56:00 +01002382 @UnsupportedAppUsage
Joe Onorato14782f72011-01-25 19:53:17 -08002383 public int subtreeSystemUiVisibility;
2384
2385 /**
Joe Onorato664644d2011-01-23 17:53:23 -08002386 * Get callbacks about the system ui visibility changing.
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002387 *
Joe Onorato664644d2011-01-23 17:53:23 -08002388 * TODO: Maybe there should be a bitfield of optional callbacks that we need.
2389 *
2390 * @hide
2391 */
Mathew Inwooda570dee2018-08-17 14:56:00 +01002392 @UnsupportedAppUsage
Joe Onorato664644d2011-01-23 17:53:23 -08002393 public boolean hasSystemUiListeners;
2394
Adrian Roosfa02da62018-01-15 16:01:18 +01002395
2396 /** @hide */
2397 @Retention(RetentionPolicy.SOURCE)
2398 @IntDef(
2399 flag = true,
2400 value = {LAYOUT_IN_DISPLAY_CUTOUT_MODE_DEFAULT,
Adrian Roos87526af2018-03-27 16:36:25 +02002401 LAYOUT_IN_DISPLAY_CUTOUT_MODE_SHORT_EDGES,
Adrian Roosfa02da62018-01-15 16:01:18 +01002402 LAYOUT_IN_DISPLAY_CUTOUT_MODE_NEVER})
2403 @interface LayoutInDisplayCutoutMode {}
2404
2405 /**
2406 * Controls how the window is laid out if there is a {@link DisplayCutout}.
2407 *
2408 * <p>
2409 * Defaults to {@link #LAYOUT_IN_DISPLAY_CUTOUT_MODE_DEFAULT}.
2410 *
2411 * @see #LAYOUT_IN_DISPLAY_CUTOUT_MODE_DEFAULT
Adrian Roos87526af2018-03-27 16:36:25 +02002412 * @see #LAYOUT_IN_DISPLAY_CUTOUT_MODE_SHORT_EDGES
Adrian Roosfa02da62018-01-15 16:01:18 +01002413 * @see #LAYOUT_IN_DISPLAY_CUTOUT_MODE_NEVER
2414 * @see DisplayCutout
Adrian Roos87526af2018-03-27 16:36:25 +02002415 * @see android.R.attr#windowLayoutInDisplayCutoutMode
2416 * android:windowLayoutInDisplayCutoutMode
Adrian Roosfa02da62018-01-15 16:01:18 +01002417 */
2418 @LayoutInDisplayCutoutMode
2419 public int layoutInDisplayCutoutMode = LAYOUT_IN_DISPLAY_CUTOUT_MODE_DEFAULT;
2420
2421 /**
2422 * The window is allowed to extend into the {@link DisplayCutout} area, only if the
Adrian Roos6a4fa0e2018-03-05 19:50:16 +01002423 * {@link DisplayCutout} is fully contained within a system bar. Otherwise, the window is
Adrian Roosfa02da62018-01-15 16:01:18 +01002424 * laid out such that it does not overlap with the {@link DisplayCutout} area.
2425 *
2426 * <p>
Adrian Roos87526af2018-03-27 16:36:25 +02002427 * In practice, this means that if the window did not set {@link #FLAG_FULLSCREEN} or
2428 * {@link View#SYSTEM_UI_FLAG_FULLSCREEN}, it can extend into the cutout area in portrait
2429 * if the cutout is at the top edge. Similarly for
2430 * {@link View#SYSTEM_UI_FLAG_HIDE_NAVIGATION} and a cutout at the bottom of the screen.
Adrian Roos6a4fa0e2018-03-05 19:50:16 +01002431 * Otherwise (i.e. fullscreen or landscape) it is laid out such that it does not overlap the
Adrian Roosfa02da62018-01-15 16:01:18 +01002432 * cutout area.
2433 *
2434 * <p>
Adrian Roos6a4fa0e2018-03-05 19:50:16 +01002435 * The usual precautions for not overlapping with the status and navigation bar are
2436 * sufficient for ensuring that no important content overlaps with the DisplayCutout.
Adrian Roosfa02da62018-01-15 16:01:18 +01002437 *
2438 * @see DisplayCutout
2439 * @see WindowInsets
Adrian Roos87526af2018-03-27 16:36:25 +02002440 * @see #layoutInDisplayCutoutMode
2441 * @see android.R.attr#windowLayoutInDisplayCutoutMode
2442 * android:windowLayoutInDisplayCutoutMode
Adrian Roosfa02da62018-01-15 16:01:18 +01002443 */
2444 public static final int LAYOUT_IN_DISPLAY_CUTOUT_MODE_DEFAULT = 0;
2445
2446 /**
Adrian Roos6a4fa0e2018-03-05 19:50:16 +01002447 * @deprecated use {@link #LAYOUT_IN_DISPLAY_CUTOUT_MODE_SHORT_EDGES}
2448 * @hide
2449 */
2450 @Deprecated
2451 public static final int LAYOUT_IN_DISPLAY_CUTOUT_MODE_ALWAYS = 1;
2452
2453 /**
2454 * The window is always allowed to extend into the {@link DisplayCutout} areas on the short
2455 * edges of the screen.
2456 *
2457 * The window will never extend into a {@link DisplayCutout} area on the long edges of the
2458 * screen.
Adrian Roosfa02da62018-01-15 16:01:18 +01002459 *
2460 * <p>
2461 * The window must make sure that no important content overlaps with the
2462 * {@link DisplayCutout}.
2463 *
Adrian Roosad1da312018-03-27 19:17:50 +02002464 * <p>
2465 * In this mode, the window extends under cutouts on the short edge of the display in both
2466 * portrait and landscape, regardless of whether the window is hiding the system bars:<br/>
2467 * <img src="{@docRoot}reference/android/images/display_cutout/short_edge/fullscreen_top_no_letterbox.png"
2468 * height="720"
2469 * alt="Screenshot of a fullscreen activity on a display with a cutout at the top edge in
2470 * portrait, no letterbox is applied."/>
2471 *
2472 * <img src="{@docRoot}reference/android/images/display_cutout/short_edge/landscape_top_no_letterbox.png"
2473 * width="720"
2474 * alt="Screenshot of an activity on a display with a cutout at the top edge in landscape,
2475 * no letterbox is applied."/>
2476 *
2477 * <p>
2478 * A cutout in the corner is considered to be on the short edge: <br/>
2479 * <img src="{@docRoot}reference/android/images/display_cutout/short_edge/fullscreen_corner_no_letterbox.png"
2480 * height="720"
2481 * alt="Screenshot of a fullscreen activity on a display with a cutout in the corner in
2482 * portrait, no letterbox is applied."/>
2483 *
2484 * <p>
2485 * On the other hand, should the cutout be on the long edge of the display, a letterbox will
2486 * be applied such that the window does not extend into the cutout on either long edge:
2487 * <br/>
2488 * <img src="{@docRoot}reference/android/images/display_cutout/short_edge/portrait_side_letterbox.png"
2489 * height="720"
2490 * alt="Screenshot of an activity on a display with a cutout on the long edge in portrait,
2491 * letterbox is applied."/>
2492 *
Adrian Roosfa02da62018-01-15 16:01:18 +01002493 * @see DisplayCutout
2494 * @see WindowInsets#getDisplayCutout()
Adrian Roos87526af2018-03-27 16:36:25 +02002495 * @see #layoutInDisplayCutoutMode
2496 * @see android.R.attr#windowLayoutInDisplayCutoutMode
2497 * android:windowLayoutInDisplayCutoutMode
Adrian Roosfa02da62018-01-15 16:01:18 +01002498 */
Adrian Roos6a4fa0e2018-03-05 19:50:16 +01002499 public static final int LAYOUT_IN_DISPLAY_CUTOUT_MODE_SHORT_EDGES = 1;
Adrian Roosfa02da62018-01-15 16:01:18 +01002500
2501 /**
2502 * The window is never allowed to overlap with the DisplayCutout area.
2503 *
2504 * <p>
Adrian Roos87526af2018-03-27 16:36:25 +02002505 * This should be used with windows that transiently set
2506 * {@link View#SYSTEM_UI_FLAG_FULLSCREEN} or {@link View#SYSTEM_UI_FLAG_HIDE_NAVIGATION}
2507 * to avoid a relayout of the window when the respective flag is set or cleared.
Adrian Roosfa02da62018-01-15 16:01:18 +01002508 *
2509 * @see DisplayCutout
Adrian Roos87526af2018-03-27 16:36:25 +02002510 * @see #layoutInDisplayCutoutMode
2511 * @see android.R.attr#windowLayoutInDisplayCutoutMode
2512 * android:windowLayoutInDisplayCutoutMode
Adrian Roosfa02da62018-01-15 16:01:18 +01002513 */
2514 public static final int LAYOUT_IN_DISPLAY_CUTOUT_MODE_NEVER = 2;
2515
2516
Jeff Brown474dcb52011-06-14 20:22:50 -07002517 /**
2518 * When this window has focus, disable touch pad pointer gesture processing.
2519 * The window will receive raw position updates from the touch pad instead
2520 * of pointer movements and synthetic touch events.
2521 *
2522 * @hide
2523 */
2524 public static final int INPUT_FEATURE_DISABLE_POINTER_GESTURES = 0x00000001;
2525
2526 /**
Jeff Browncc4f7db2011-08-30 20:34:48 -07002527 * Does not construct an input channel for this window. The channel will therefore
2528 * be incapable of receiving input.
2529 *
2530 * @hide
2531 */
2532 public static final int INPUT_FEATURE_NO_INPUT_CHANNEL = 0x00000002;
2533
2534 /**
Jeff Brown1e3b98d2012-09-30 18:58:59 -07002535 * When this window has focus, does not call user activity for all input events so
2536 * the application will have to do it itself. Should only be used by
2537 * the keyguard and phone app.
2538 * <p>
2539 * Should only be used by the keyguard and phone app.
2540 * </p>
2541 *
2542 * @hide
2543 */
Mathew Inwooda570dee2018-08-17 14:56:00 +01002544 @UnsupportedAppUsage
Jeff Brown1e3b98d2012-09-30 18:58:59 -07002545 public static final int INPUT_FEATURE_DISABLE_USER_ACTIVITY = 0x00000004;
2546
2547 /**
Jeff Brown474dcb52011-06-14 20:22:50 -07002548 * Control special features of the input subsystem.
2549 *
Craig Mautnerbdcc9a52013-04-19 13:06:53 -07002550 * @see #INPUT_FEATURE_DISABLE_POINTER_GESTURES
Jeff Browncc4f7db2011-08-30 20:34:48 -07002551 * @see #INPUT_FEATURE_NO_INPUT_CHANNEL
Jeff Brown1e3b98d2012-09-30 18:58:59 -07002552 * @see #INPUT_FEATURE_DISABLE_USER_ACTIVITY
Jeff Brown474dcb52011-06-14 20:22:50 -07002553 * @hide
2554 */
Mathew Inwooda570dee2018-08-17 14:56:00 +01002555 @UnsupportedAppUsage
Jeff Brown474dcb52011-06-14 20:22:50 -07002556 public int inputFeatures;
2557
Jeff Brown1e3b98d2012-09-30 18:58:59 -07002558 /**
2559 * Sets the number of milliseconds before the user activity timeout occurs
2560 * when this window has focus. A value of -1 uses the standard timeout.
2561 * A value of 0 uses the minimum support display timeout.
2562 * <p>
2563 * This property can only be used to reduce the user specified display timeout;
2564 * it can never make the timeout longer than it normally would be.
2565 * </p><p>
2566 * Should only be used by the keyguard and phone app.
2567 * </p>
2568 *
2569 * @hide
2570 */
Mathew Inwooda570dee2018-08-17 14:56:00 +01002571 @UnsupportedAppUsage
Jeff Brown1e3b98d2012-09-30 18:58:59 -07002572 public long userActivityTimeout = -1;
2573
Phil Weaver396d5492016-03-22 17:53:50 -07002574 /**
2575 * For windows with an anchor (e.g. PopupWindow), keeps track of the View that anchors the
2576 * window.
2577 *
2578 * @hide
2579 */
Phil Weaver8583ae82018-02-13 11:01:24 -08002580 public long accessibilityIdOfAnchor = AccessibilityNodeInfo.UNDEFINED_NODE_ID;
Phil Weaver396d5492016-03-22 17:53:50 -07002581
Phil Weaver9be3c7b2016-04-07 15:15:41 -07002582 /**
2583 * The window title isn't kept in sync with what is displayed in the title bar, so we
2584 * separately track the currently shown title to provide to accessibility.
2585 *
2586 * @hide
2587 */
Alan Viverette39259dd2017-05-25 11:10:46 -04002588 @TestApi
Phil Weaver9be3c7b2016-04-07 15:15:41 -07002589 public CharSequence accessibilityTitle;
2590
Robert Carr70f0d222016-04-10 16:33:08 -07002591 /**
Svetoslav Ganovaa076532016-08-01 19:16:43 -07002592 * Sets a timeout in milliseconds before which the window will be hidden
Robert Carr70f0d222016-04-10 16:33:08 -07002593 * by the window manager. Useful for transient notifications like toasts
2594 * so we don't have to rely on client cooperation to ensure the window
Svetoslav Ganovaa076532016-08-01 19:16:43 -07002595 * is hidden. Must be specified at window creation time. Note that apps
2596 * are not prepared to handle their windows being removed without their
2597 * explicit request and may try to interact with the removed window
2598 * resulting in undefined behavior and crashes. Therefore, we do hide
2599 * such windows to prevent them from overlaying other apps.
Robert Carr70f0d222016-04-10 16:33:08 -07002600 *
2601 * @hide
2602 */
Mathew Inwooda570dee2018-08-17 14:56:00 +01002603 @UnsupportedAppUsage
Svetoslav Ganovaa076532016-08-01 19:16:43 -07002604 public long hideTimeoutMilliseconds = -1;
Robert Carr70f0d222016-04-10 16:33:08 -07002605
Romain Guy48327452017-01-23 17:03:35 -08002606 /**
2607 * The color mode requested by this window. The target display may
2608 * not be able to honor the request. When the color mode is not set
2609 * to {@link ActivityInfo#COLOR_MODE_DEFAULT}, it might override the
2610 * pixel format specified in {@link #format}.
2611 *
2612 * @hide
2613 */
2614 @ActivityInfo.ColorMode
Jorim Jaggi484851b2017-09-22 16:03:27 +02002615 private int mColorMode = COLOR_MODE_DEFAULT;
Romain Guy48327452017-01-23 17:03:35 -08002616
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002617 public LayoutParams() {
Romain Guy980a9382010-01-08 15:06:28 -08002618 super(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002619 type = TYPE_APPLICATION;
2620 format = PixelFormat.OPAQUE;
2621 }
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002622
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002623 public LayoutParams(int _type) {
Romain Guy980a9382010-01-08 15:06:28 -08002624 super(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002625 type = _type;
2626 format = PixelFormat.OPAQUE;
2627 }
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002628
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002629 public LayoutParams(int _type, int _flags) {
Romain Guy980a9382010-01-08 15:06:28 -08002630 super(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002631 type = _type;
2632 flags = _flags;
2633 format = PixelFormat.OPAQUE;
2634 }
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002635
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002636 public LayoutParams(int _type, int _flags, int _format) {
Romain Guy980a9382010-01-08 15:06:28 -08002637 super(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002638 type = _type;
2639 flags = _flags;
2640 format = _format;
2641 }
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002642
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002643 public LayoutParams(int w, int h, int _type, int _flags, int _format) {
2644 super(w, h);
2645 type = _type;
2646 flags = _flags;
2647 format = _format;
2648 }
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002649
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002650 public LayoutParams(int w, int h, int xpos, int ypos, int _type,
2651 int _flags, int _format) {
2652 super(w, h);
2653 x = xpos;
2654 y = ypos;
2655 type = _type;
2656 flags = _flags;
2657 format = _format;
2658 }
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002659
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002660 public final void setTitle(CharSequence title) {
2661 if (null == title)
2662 title = "";
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002663
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002664 mTitle = TextUtils.stringOrSpannedString(title);
2665 }
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002666
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002667 public final CharSequence getTitle() {
Wale Ogunwaleb6e2ead2016-02-15 08:28:47 -08002668 return mTitle != null ? mTitle : "";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002669 }
Bryce Lee53b9fbd2015-02-06 12:06:34 -08002670
Wale Ogunwale246c2092016-04-07 14:12:44 -07002671 /**
2672 * Sets the surface insets based on the elevation (visual z position) of the input view.
2673 * @hide
2674 */
2675 public final void setSurfaceInsets(View view, boolean manual, boolean preservePrevious) {
2676 final int surfaceInset = (int) Math.ceil(view.getZ() * 2);
Vladislav Kaznacheevcb4bbd72016-05-12 12:56:31 -07002677 // Partial workaround for b/28318973. Every inset change causes a freeform window
2678 // to jump a little for a few frames. If we never allow surface insets to decrease,
2679 // they will stabilize quickly (often from the very beginning, as most windows start
2680 // as focused).
2681 // TODO(b/22668382) to fix this properly.
2682 if (surfaceInset == 0) {
2683 // OK to have 0 (this is the case for non-freeform windows).
2684 surfaceInsets.set(0, 0, 0, 0);
2685 } else {
2686 surfaceInsets.set(
2687 Math.max(surfaceInset, surfaceInsets.left),
2688 Math.max(surfaceInset, surfaceInsets.top),
2689 Math.max(surfaceInset, surfaceInsets.right),
2690 Math.max(surfaceInset, surfaceInsets.bottom));
2691 }
Wale Ogunwale246c2092016-04-07 14:12:44 -07002692 hasManualSurfaceInsets = manual;
2693 preservePreviousSurfaceInsets = preservePrevious;
2694 }
2695
Romain Guy48327452017-01-23 17:03:35 -08002696 /**
2697 * <p>Set the color mode of the window. Setting the color mode might
2698 * override the window's pixel {@link WindowManager.LayoutParams#format format}.</p>
2699 *
2700 * <p>The color mode must be one of {@link ActivityInfo#COLOR_MODE_DEFAULT},
2701 * {@link ActivityInfo#COLOR_MODE_WIDE_COLOR_GAMUT} or
2702 * {@link ActivityInfo#COLOR_MODE_HDR}.</p>
2703 *
2704 * @see #getColorMode()
2705 */
2706 public void setColorMode(@ActivityInfo.ColorMode int colorMode) {
2707 mColorMode = colorMode;
2708 }
2709
2710 /**
2711 * Returns the color mode of the window, one of {@link ActivityInfo#COLOR_MODE_DEFAULT},
2712 * {@link ActivityInfo#COLOR_MODE_WIDE_COLOR_GAMUT} or {@link ActivityInfo#COLOR_MODE_HDR}.
2713 *
2714 * @see #setColorMode(int)
2715 */
2716 @ActivityInfo.ColorMode
2717 public int getColorMode() {
2718 return mColorMode;
2719 }
2720
Bryce Lee53b9fbd2015-02-06 12:06:34 -08002721 /** @hide */
2722 @SystemApi
2723 public final void setUserActivityTimeout(long timeout) {
2724 userActivityTimeout = timeout;
2725 }
2726
2727 /** @hide */
2728 @SystemApi
2729 public final long getUserActivityTimeout() {
2730 return userActivityTimeout;
2731 }
2732
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002733 public int describeContents() {
2734 return 0;
2735 }
2736
2737 public void writeToParcel(Parcel out, int parcelableFlags) {
2738 out.writeInt(width);
2739 out.writeInt(height);
2740 out.writeInt(x);
2741 out.writeInt(y);
2742 out.writeInt(type);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002743 out.writeInt(flags);
Dianne Hackborn5d927c22011-09-02 12:22:18 -07002744 out.writeInt(privateFlags);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002745 out.writeInt(softInputMode);
Adrian Roosfa02da62018-01-15 16:01:18 +01002746 out.writeInt(layoutInDisplayCutoutMode);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002747 out.writeInt(gravity);
2748 out.writeFloat(horizontalMargin);
2749 out.writeFloat(verticalMargin);
2750 out.writeInt(format);
2751 out.writeInt(windowAnimations);
2752 out.writeFloat(alpha);
2753 out.writeFloat(dimAmount);
2754 out.writeFloat(screenBrightness);
Mike Lockwoodfb73f792009-11-20 11:31:18 -05002755 out.writeFloat(buttonBrightness);
Craig Mautner3c174372013-02-21 17:54:37 -08002756 out.writeInt(rotationAnimation);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002757 out.writeStrongBinder(token);
2758 out.writeString(packageName);
2759 TextUtils.writeToParcel(mTitle, out, parcelableFlags);
2760 out.writeInt(screenOrientation);
Michael Wright3f145a22014-07-22 19:46:03 -07002761 out.writeFloat(preferredRefreshRate);
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002762 out.writeInt(preferredDisplayModeId);
Joe Onorato664644d2011-01-23 17:53:23 -08002763 out.writeInt(systemUiVisibility);
Joe Onorato14782f72011-01-25 19:53:17 -08002764 out.writeInt(subtreeSystemUiVisibility);
Joe Onorato664644d2011-01-23 17:53:23 -08002765 out.writeInt(hasSystemUiListeners ? 1 : 0);
Jeff Brown474dcb52011-06-14 20:22:50 -07002766 out.writeInt(inputFeatures);
Jeff Brown1e3b98d2012-09-30 18:58:59 -07002767 out.writeLong(userActivityTimeout);
Alan Viverette49a22e82014-07-12 20:01:27 -07002768 out.writeInt(surfaceInsets.left);
2769 out.writeInt(surfaceInsets.top);
2770 out.writeInt(surfaceInsets.right);
2771 out.writeInt(surfaceInsets.bottom);
Alan Viverette5435a302015-01-29 10:25:34 -08002772 out.writeInt(hasManualSurfaceInsets ? 1 : 0);
Wale Ogunwale246c2092016-04-07 14:12:44 -07002773 out.writeInt(preservePreviousSurfaceInsets ? 1 : 0);
Wale Ogunwale393b1c12014-10-18 16:22:01 -07002774 out.writeInt(needsMenuKey);
Phil Weaver8583ae82018-02-13 11:01:24 -08002775 out.writeLong(accessibilityIdOfAnchor);
Phil Weaver9be3c7b2016-04-07 15:15:41 -07002776 TextUtils.writeToParcel(accessibilityTitle, out, parcelableFlags);
Romain Guy26a2b972017-04-17 09:39:51 -07002777 out.writeInt(mColorMode);
Svetoslav Ganovaa076532016-08-01 19:16:43 -07002778 out.writeLong(hideTimeoutMilliseconds);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002779 }
Wale Ogunwale393b1c12014-10-18 16:22:01 -07002780
Jeff Sharkey9e8f83d2019-02-28 12:06:45 -07002781 public static final @android.annotation.NonNull Parcelable.Creator<LayoutParams> CREATOR
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002782 = new Parcelable.Creator<LayoutParams>() {
2783 public LayoutParams createFromParcel(Parcel in) {
2784 return new LayoutParams(in);
2785 }
Wale Ogunwale393b1c12014-10-18 16:22:01 -07002786
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002787 public LayoutParams[] newArray(int size) {
2788 return new LayoutParams[size];
2789 }
2790 };
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002791
2792
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002793 public LayoutParams(Parcel in) {
2794 width = in.readInt();
2795 height = in.readInt();
2796 x = in.readInt();
2797 y = in.readInt();
2798 type = in.readInt();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002799 flags = in.readInt();
Dianne Hackborn5d927c22011-09-02 12:22:18 -07002800 privateFlags = in.readInt();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002801 softInputMode = in.readInt();
Adrian Roosfa02da62018-01-15 16:01:18 +01002802 layoutInDisplayCutoutMode = in.readInt();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002803 gravity = in.readInt();
2804 horizontalMargin = in.readFloat();
2805 verticalMargin = in.readFloat();
2806 format = in.readInt();
2807 windowAnimations = in.readInt();
2808 alpha = in.readFloat();
2809 dimAmount = in.readFloat();
2810 screenBrightness = in.readFloat();
Mike Lockwoodfb73f792009-11-20 11:31:18 -05002811 buttonBrightness = in.readFloat();
Craig Mautner3c174372013-02-21 17:54:37 -08002812 rotationAnimation = in.readInt();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002813 token = in.readStrongBinder();
2814 packageName = in.readString();
2815 mTitle = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(in);
2816 screenOrientation = in.readInt();
Michael Wright3f145a22014-07-22 19:46:03 -07002817 preferredRefreshRate = in.readFloat();
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002818 preferredDisplayModeId = in.readInt();
Joe Onorato664644d2011-01-23 17:53:23 -08002819 systemUiVisibility = in.readInt();
Joe Onorato14782f72011-01-25 19:53:17 -08002820 subtreeSystemUiVisibility = in.readInt();
Joe Onorato664644d2011-01-23 17:53:23 -08002821 hasSystemUiListeners = in.readInt() != 0;
Jeff Brown474dcb52011-06-14 20:22:50 -07002822 inputFeatures = in.readInt();
Jeff Brown1e3b98d2012-09-30 18:58:59 -07002823 userActivityTimeout = in.readLong();
Alan Viverette49a22e82014-07-12 20:01:27 -07002824 surfaceInsets.left = in.readInt();
2825 surfaceInsets.top = in.readInt();
2826 surfaceInsets.right = in.readInt();
2827 surfaceInsets.bottom = in.readInt();
Alan Viverette5435a302015-01-29 10:25:34 -08002828 hasManualSurfaceInsets = in.readInt() != 0;
Wale Ogunwale246c2092016-04-07 14:12:44 -07002829 preservePreviousSurfaceInsets = in.readInt() != 0;
Wale Ogunwale393b1c12014-10-18 16:22:01 -07002830 needsMenuKey = in.readInt();
Phil Weaver8583ae82018-02-13 11:01:24 -08002831 accessibilityIdOfAnchor = in.readLong();
Phil Weaver9be3c7b2016-04-07 15:15:41 -07002832 accessibilityTitle = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(in);
Romain Guy26a2b972017-04-17 09:39:51 -07002833 mColorMode = in.readInt();
Svetoslav Ganovaa076532016-08-01 19:16:43 -07002834 hideTimeoutMilliseconds = in.readLong();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002835 }
Wale Ogunwale393b1c12014-10-18 16:22:01 -07002836
Romain Guy72998072009-06-22 11:09:20 -07002837 @SuppressWarnings({"PointlessBitwiseExpression"})
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002838 public static final int LAYOUT_CHANGED = 1<<0;
2839 public static final int TYPE_CHANGED = 1<<1;
2840 public static final int FLAGS_CHANGED = 1<<2;
2841 public static final int FORMAT_CHANGED = 1<<3;
2842 public static final int ANIMATION_CHANGED = 1<<4;
2843 public static final int DIM_AMOUNT_CHANGED = 1<<5;
2844 public static final int TITLE_CHANGED = 1<<6;
2845 public static final int ALPHA_CHANGED = 1<<7;
2846 public static final int MEMORY_TYPE_CHANGED = 1<<8;
2847 public static final int SOFT_INPUT_MODE_CHANGED = 1<<9;
2848 public static final int SCREEN_ORIENTATION_CHANGED = 1<<10;
2849 public static final int SCREEN_BRIGHTNESS_CHANGED = 1<<11;
Craig Mautner3c174372013-02-21 17:54:37 -08002850 public static final int ROTATION_ANIMATION_CHANGED = 1<<12;
Mike Lockwoodfb73f792009-11-20 11:31:18 -05002851 /** {@hide} */
Craig Mautner3c174372013-02-21 17:54:37 -08002852 public static final int BUTTON_BRIGHTNESS_CHANGED = 1<<13;
Joe Onorato664644d2011-01-23 17:53:23 -08002853 /** {@hide} */
Craig Mautner3c174372013-02-21 17:54:37 -08002854 public static final int SYSTEM_UI_VISIBILITY_CHANGED = 1<<14;
Joe Onorato664644d2011-01-23 17:53:23 -08002855 /** {@hide} */
Craig Mautner3c174372013-02-21 17:54:37 -08002856 public static final int SYSTEM_UI_LISTENER_CHANGED = 1<<15;
Jeff Brown474dcb52011-06-14 20:22:50 -07002857 /** {@hide} */
Craig Mautner3c174372013-02-21 17:54:37 -08002858 public static final int INPUT_FEATURES_CHANGED = 1<<16;
Dianne Hackborn5d927c22011-09-02 12:22:18 -07002859 /** {@hide} */
Craig Mautner3c174372013-02-21 17:54:37 -08002860 public static final int PRIVATE_FLAGS_CHANGED = 1<<17;
Romain Guyf21c9b02011-09-06 16:56:54 -07002861 /** {@hide} */
Craig Mautner3c174372013-02-21 17:54:37 -08002862 public static final int USER_ACTIVITY_TIMEOUT_CHANGED = 1<<18;
Jeff Brown1e3b98d2012-09-30 18:58:59 -07002863 /** {@hide} */
John Spurlockbd957402013-10-03 11:38:39 -04002864 public static final int TRANSLUCENT_FLAGS_CHANGED = 1<<19;
2865 /** {@hide} */
Alan Viverette49a22e82014-07-12 20:01:27 -07002866 public static final int SURFACE_INSETS_CHANGED = 1<<20;
Alan Viveretteccb11e12014-07-08 16:04:02 -07002867 /** {@hide} */
Michael Wright3f145a22014-07-22 19:46:03 -07002868 public static final int PREFERRED_REFRESH_RATE_CHANGED = 1 << 21;
2869 /** {@hide} */
Wale Ogunwale393b1c12014-10-18 16:22:01 -07002870 public static final int NEEDS_MENU_KEY_CHANGED = 1 << 22;
2871 /** {@hide} */
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002872 public static final int PREFERRED_DISPLAY_MODE_ID = 1 << 23;
2873 /** {@hide} */
Phil Weaver396d5492016-03-22 17:53:50 -07002874 public static final int ACCESSIBILITY_ANCHOR_CHANGED = 1 << 24;
2875 /** {@hide} */
Alan Viverette39259dd2017-05-25 11:10:46 -04002876 @TestApi
Phil Weaver9be3c7b2016-04-07 15:15:41 -07002877 public static final int ACCESSIBILITY_TITLE_CHANGED = 1 << 25;
2878 /** {@hide} */
Romain Guy26a2b972017-04-17 09:39:51 -07002879 public static final int COLOR_MODE_CHANGED = 1 << 26;
2880 /** {@hide} */
Romain Guyf21c9b02011-09-06 16:56:54 -07002881 public static final int EVERYTHING_CHANGED = 0xffffffff;
2882
Mitsuru Oshimae5fb3282009-06-09 21:16:08 -07002883 // internal buffer to backup/restore parameters under compatibility mode.
2884 private int[] mCompatibilityParamsBackup = null;
Wale Ogunwale393b1c12014-10-18 16:22:01 -07002885
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002886 public final int copyFrom(LayoutParams o) {
2887 int changes = 0;
Wale Ogunwale393b1c12014-10-18 16:22:01 -07002888
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002889 if (width != o.width) {
2890 width = o.width;
Chet Haase40e03832011-10-06 08:34:13 -07002891 changes |= LAYOUT_CHANGED;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002892 }
2893 if (height != o.height) {
2894 height = o.height;
Chet Haase40e03832011-10-06 08:34:13 -07002895 changes |= LAYOUT_CHANGED;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002896 }
2897 if (x != o.x) {
2898 x = o.x;
2899 changes |= LAYOUT_CHANGED;
2900 }
2901 if (y != o.y) {
2902 y = o.y;
2903 changes |= LAYOUT_CHANGED;
2904 }
2905 if (horizontalWeight != o.horizontalWeight) {
2906 horizontalWeight = o.horizontalWeight;
Chet Haase40e03832011-10-06 08:34:13 -07002907 changes |= LAYOUT_CHANGED;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002908 }
2909 if (verticalWeight != o.verticalWeight) {
2910 verticalWeight = o.verticalWeight;
Chet Haase40e03832011-10-06 08:34:13 -07002911 changes |= LAYOUT_CHANGED;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002912 }
2913 if (horizontalMargin != o.horizontalMargin) {
2914 horizontalMargin = o.horizontalMargin;
Chet Haase40e03832011-10-06 08:34:13 -07002915 changes |= LAYOUT_CHANGED;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002916 }
2917 if (verticalMargin != o.verticalMargin) {
2918 verticalMargin = o.verticalMargin;
Chet Haase40e03832011-10-06 08:34:13 -07002919 changes |= LAYOUT_CHANGED;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002920 }
2921 if (type != o.type) {
2922 type = o.type;
2923 changes |= TYPE_CHANGED;
2924 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002925 if (flags != o.flags) {
John Spurlockbd957402013-10-03 11:38:39 -04002926 final int diff = flags ^ o.flags;
2927 if ((diff & (FLAG_TRANSLUCENT_STATUS | FLAG_TRANSLUCENT_NAVIGATION)) != 0) {
2928 changes |= TRANSLUCENT_FLAGS_CHANGED;
2929 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002930 flags = o.flags;
Chet Haase40e03832011-10-06 08:34:13 -07002931 changes |= FLAGS_CHANGED;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002932 }
Dianne Hackborn5d927c22011-09-02 12:22:18 -07002933 if (privateFlags != o.privateFlags) {
2934 privateFlags = o.privateFlags;
2935 changes |= PRIVATE_FLAGS_CHANGED;
2936 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002937 if (softInputMode != o.softInputMode) {
2938 softInputMode = o.softInputMode;
2939 changes |= SOFT_INPUT_MODE_CHANGED;
2940 }
Adrian Roosfa02da62018-01-15 16:01:18 +01002941 if (layoutInDisplayCutoutMode != o.layoutInDisplayCutoutMode) {
2942 layoutInDisplayCutoutMode = o.layoutInDisplayCutoutMode;
2943 changes |= LAYOUT_CHANGED;
2944 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002945 if (gravity != o.gravity) {
2946 gravity = o.gravity;
Chet Haase40e03832011-10-06 08:34:13 -07002947 changes |= LAYOUT_CHANGED;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002948 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002949 if (format != o.format) {
2950 format = o.format;
Chet Haase40e03832011-10-06 08:34:13 -07002951 changes |= FORMAT_CHANGED;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002952 }
2953 if (windowAnimations != o.windowAnimations) {
2954 windowAnimations = o.windowAnimations;
2955 changes |= ANIMATION_CHANGED;
2956 }
2957 if (token == null) {
2958 // NOTE: token only copied if the recipient doesn't
2959 // already have one.
2960 token = o.token;
2961 }
2962 if (packageName == null) {
2963 // NOTE: packageName only copied if the recipient doesn't
2964 // already have one.
2965 packageName = o.packageName;
2966 }
Wale Ogunwale1f240c92016-02-22 18:04:58 -08002967 if (!Objects.equals(mTitle, o.mTitle) && o.mTitle != null) {
Wale Ogunwaleb6e2ead2016-02-15 08:28:47 -08002968 // NOTE: mTitle only copied if the originator set one.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002969 mTitle = o.mTitle;
2970 changes |= TITLE_CHANGED;
2971 }
2972 if (alpha != o.alpha) {
2973 alpha = o.alpha;
2974 changes |= ALPHA_CHANGED;
2975 }
2976 if (dimAmount != o.dimAmount) {
2977 dimAmount = o.dimAmount;
2978 changes |= DIM_AMOUNT_CHANGED;
2979 }
2980 if (screenBrightness != o.screenBrightness) {
2981 screenBrightness = o.screenBrightness;
2982 changes |= SCREEN_BRIGHTNESS_CHANGED;
2983 }
Mike Lockwoodfb73f792009-11-20 11:31:18 -05002984 if (buttonBrightness != o.buttonBrightness) {
2985 buttonBrightness = o.buttonBrightness;
2986 changes |= BUTTON_BRIGHTNESS_CHANGED;
2987 }
Craig Mautner3c174372013-02-21 17:54:37 -08002988 if (rotationAnimation != o.rotationAnimation) {
2989 rotationAnimation = o.rotationAnimation;
2990 changes |= ROTATION_ANIMATION_CHANGED;
2991 }
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002992
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002993 if (screenOrientation != o.screenOrientation) {
2994 screenOrientation = o.screenOrientation;
Chet Haase40e03832011-10-06 08:34:13 -07002995 changes |= SCREEN_ORIENTATION_CHANGED;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002996 }
Romain Guy529b60a2010-08-03 18:05:47 -07002997
Michael Wright3f145a22014-07-22 19:46:03 -07002998 if (preferredRefreshRate != o.preferredRefreshRate) {
2999 preferredRefreshRate = o.preferredRefreshRate;
3000 changes |= PREFERRED_REFRESH_RATE_CHANGED;
3001 }
3002
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07003003 if (preferredDisplayModeId != o.preferredDisplayModeId) {
3004 preferredDisplayModeId = o.preferredDisplayModeId;
3005 changes |= PREFERRED_DISPLAY_MODE_ID;
3006 }
3007
Joe Onorato14782f72011-01-25 19:53:17 -08003008 if (systemUiVisibility != o.systemUiVisibility
3009 || subtreeSystemUiVisibility != o.subtreeSystemUiVisibility) {
Joe Onorato664644d2011-01-23 17:53:23 -08003010 systemUiVisibility = o.systemUiVisibility;
Joe Onorato14782f72011-01-25 19:53:17 -08003011 subtreeSystemUiVisibility = o.subtreeSystemUiVisibility;
Joe Onorato664644d2011-01-23 17:53:23 -08003012 changes |= SYSTEM_UI_VISIBILITY_CHANGED;
3013 }
3014
3015 if (hasSystemUiListeners != o.hasSystemUiListeners) {
3016 hasSystemUiListeners = o.hasSystemUiListeners;
3017 changes |= SYSTEM_UI_LISTENER_CHANGED;
3018 }
3019
Jeff Brown474dcb52011-06-14 20:22:50 -07003020 if (inputFeatures != o.inputFeatures) {
3021 inputFeatures = o.inputFeatures;
3022 changes |= INPUT_FEATURES_CHANGED;
3023 }
3024
Jeff Brown1e3b98d2012-09-30 18:58:59 -07003025 if (userActivityTimeout != o.userActivityTimeout) {
3026 userActivityTimeout = o.userActivityTimeout;
3027 changes |= USER_ACTIVITY_TIMEOUT_CHANGED;
3028 }
3029
Alan Viverette49a22e82014-07-12 20:01:27 -07003030 if (!surfaceInsets.equals(o.surfaceInsets)) {
3031 surfaceInsets.set(o.surfaceInsets);
3032 changes |= SURFACE_INSETS_CHANGED;
Alan Viveretteccb11e12014-07-08 16:04:02 -07003033 }
3034
Alan Viverette5435a302015-01-29 10:25:34 -08003035 if (hasManualSurfaceInsets != o.hasManualSurfaceInsets) {
3036 hasManualSurfaceInsets = o.hasManualSurfaceInsets;
3037 changes |= SURFACE_INSETS_CHANGED;
3038 }
3039
Wale Ogunwale246c2092016-04-07 14:12:44 -07003040 if (preservePreviousSurfaceInsets != o.preservePreviousSurfaceInsets) {
3041 preservePreviousSurfaceInsets = o.preservePreviousSurfaceInsets;
3042 changes |= SURFACE_INSETS_CHANGED;
3043 }
3044
Wale Ogunwale393b1c12014-10-18 16:22:01 -07003045 if (needsMenuKey != o.needsMenuKey) {
3046 needsMenuKey = o.needsMenuKey;
3047 changes |= NEEDS_MENU_KEY_CHANGED;
3048 }
3049
Phil Weaver396d5492016-03-22 17:53:50 -07003050 if (accessibilityIdOfAnchor != o.accessibilityIdOfAnchor) {
3051 accessibilityIdOfAnchor = o.accessibilityIdOfAnchor;
3052 changes |= ACCESSIBILITY_ANCHOR_CHANGED;
3053 }
3054
Phil Weaver9be3c7b2016-04-07 15:15:41 -07003055 if (!Objects.equals(accessibilityTitle, o.accessibilityTitle)
3056 && o.accessibilityTitle != null) {
3057 // NOTE: accessibilityTitle only copied if the originator set one.
3058 accessibilityTitle = o.accessibilityTitle;
3059 changes |= ACCESSIBILITY_TITLE_CHANGED;
3060 }
3061
Romain Guy26a2b972017-04-17 09:39:51 -07003062 if (mColorMode != o.mColorMode) {
3063 mColorMode = o.mColorMode;
3064 changes |= COLOR_MODE_CHANGED;
3065 }
3066
Robert Carr70f0d222016-04-10 16:33:08 -07003067 // This can't change, it's only set at window creation time.
Svetoslav Ganovaa076532016-08-01 19:16:43 -07003068 hideTimeoutMilliseconds = o.hideTimeoutMilliseconds;
Robert Carr70f0d222016-04-10 16:33:08 -07003069
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003070 return changes;
3071 }
Wale Ogunwale393b1c12014-10-18 16:22:01 -07003072
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003073 @Override
3074 public String debug(String output) {
3075 output += "Contents of " + this + ":";
3076 Log.d("Debug", output);
3077 output = super.debug("");
3078 Log.d("Debug", output);
3079 Log.d("Debug", "");
3080 Log.d("Debug", "WindowManager.LayoutParams={title=" + mTitle + "}");
3081 return "";
3082 }
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07003083
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003084 @Override
3085 public String toString() {
Jorim Jaggi484851b2017-09-22 16:03:27 +02003086 return toString("");
3087 }
3088
3089 /**
3090 * @hide
3091 */
Felipe Lemeda9ea342018-03-22 15:19:51 -07003092 public void dumpDimensions(StringBuilder sb) {
3093 sb.append('(');
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003094 sb.append(x);
3095 sb.append(',');
3096 sb.append(y);
3097 sb.append(")(");
Romain Guy48327452017-01-23 17:03:35 -08003098 sb.append((width == MATCH_PARENT ? "fill" : (width == WRAP_CONTENT
3099 ? "wrap" : String.valueOf(width))));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003100 sb.append('x');
Romain Guy48327452017-01-23 17:03:35 -08003101 sb.append((height == MATCH_PARENT ? "fill" : (height == WRAP_CONTENT
3102 ? "wrap" : String.valueOf(height))));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003103 sb.append(")");
Felipe Lemeda9ea342018-03-22 15:19:51 -07003104 }
3105
3106 /**
3107 * @hide
3108 */
3109 public String toString(String prefix) {
3110 StringBuilder sb = new StringBuilder(256);
3111 sb.append('{');
3112 dumpDimensions(sb);
Dianne Hackborn8eb2e242010-11-01 12:31:24 -07003113 if (horizontalMargin != 0) {
3114 sb.append(" hm=");
3115 sb.append(horizontalMargin);
3116 }
3117 if (verticalMargin != 0) {
3118 sb.append(" vm=");
3119 sb.append(verticalMargin);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003120 }
3121 if (gravity != 0) {
Jorim Jaggi484851b2017-09-22 16:03:27 +02003122 sb.append(" gr=");
3123 sb.append(Gravity.toString(gravity));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003124 }
Dianne Hackborn8eb2e242010-11-01 12:31:24 -07003125 if (softInputMode != 0) {
Jorim Jaggi484851b2017-09-22 16:03:27 +02003126 sb.append(" sim={");
3127 sb.append(softInputModeToString(softInputMode));
3128 sb.append('}');
Dianne Hackborn8eb2e242010-11-01 12:31:24 -07003129 }
Adrian Roosfa02da62018-01-15 16:01:18 +01003130 if (layoutInDisplayCutoutMode != 0) {
3131 sb.append(" layoutInDisplayCutoutMode=");
3132 sb.append(layoutInDisplayCutoutModeToString(layoutInDisplayCutoutMode));
3133 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003134 sb.append(" ty=");
Jorim Jaggi484851b2017-09-22 16:03:27 +02003135 sb.append(ViewDebug.intToString(LayoutParams.class, "type", type));
Dianne Hackborna44abeb2011-08-08 19:24:01 -07003136 if (format != PixelFormat.OPAQUE) {
3137 sb.append(" fmt=");
Jorim Jaggi484851b2017-09-22 16:03:27 +02003138 sb.append(PixelFormat.formatToString(format));
Dianne Hackborna44abeb2011-08-08 19:24:01 -07003139 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003140 if (windowAnimations != 0) {
3141 sb.append(" wanim=0x");
3142 sb.append(Integer.toHexString(windowAnimations));
3143 }
3144 if (screenOrientation != ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED) {
3145 sb.append(" or=");
Jorim Jaggi484851b2017-09-22 16:03:27 +02003146 sb.append(ActivityInfo.screenOrientationToString(screenOrientation));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003147 }
Dianne Hackborn8eb2e242010-11-01 12:31:24 -07003148 if (alpha != 1.0f) {
3149 sb.append(" alpha=");
3150 sb.append(alpha);
3151 }
3152 if (screenBrightness != BRIGHTNESS_OVERRIDE_NONE) {
3153 sb.append(" sbrt=");
3154 sb.append(screenBrightness);
3155 }
3156 if (buttonBrightness != BRIGHTNESS_OVERRIDE_NONE) {
3157 sb.append(" bbrt=");
3158 sb.append(buttonBrightness);
3159 }
Craig Mautner3c174372013-02-21 17:54:37 -08003160 if (rotationAnimation != ROTATION_ANIMATION_ROTATE) {
3161 sb.append(" rotAnim=");
Jorim Jaggi484851b2017-09-22 16:03:27 +02003162 sb.append(rotationAnimationToString(rotationAnimation));
Craig Mautner3c174372013-02-21 17:54:37 -08003163 }
Michael Wright3f145a22014-07-22 19:46:03 -07003164 if (preferredRefreshRate != 0) {
3165 sb.append(" preferredRefreshRate=");
3166 sb.append(preferredRefreshRate);
3167 }
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07003168 if (preferredDisplayModeId != 0) {
3169 sb.append(" preferredDisplayMode=");
3170 sb.append(preferredDisplayModeId);
3171 }
Joe Onorato664644d2011-01-23 17:53:23 -08003172 if (hasSystemUiListeners) {
3173 sb.append(" sysuil=");
3174 sb.append(hasSystemUiListeners);
3175 }
Dianne Hackborna44abeb2011-08-08 19:24:01 -07003176 if (inputFeatures != 0) {
Jorim Jaggi484851b2017-09-22 16:03:27 +02003177 sb.append(" if=").append(inputFeatureToString(inputFeatures));
Dianne Hackborna44abeb2011-08-08 19:24:01 -07003178 }
Jeff Brown1e3b98d2012-09-30 18:58:59 -07003179 if (userActivityTimeout >= 0) {
3180 sb.append(" userActivityTimeout=").append(userActivityTimeout);
3181 }
Andreas Gampe007cfa72015-03-15 14:19:43 -07003182 if (surfaceInsets.left != 0 || surfaceInsets.top != 0 || surfaceInsets.right != 0 ||
Wale Ogunwale246c2092016-04-07 14:12:44 -07003183 surfaceInsets.bottom != 0 || hasManualSurfaceInsets
3184 || !preservePreviousSurfaceInsets) {
Alan Viverette49a22e82014-07-12 20:01:27 -07003185 sb.append(" surfaceInsets=").append(surfaceInsets);
Alan Viverette5435a302015-01-29 10:25:34 -08003186 if (hasManualSurfaceInsets) {
3187 sb.append(" (manual)");
3188 }
Wale Ogunwale246c2092016-04-07 14:12:44 -07003189 if (!preservePreviousSurfaceInsets) {
3190 sb.append(" (!preservePreviousSurfaceInsets)");
3191 }
Alan Viveretteccb11e12014-07-08 16:04:02 -07003192 }
Jorim Jaggi484851b2017-09-22 16:03:27 +02003193 if (needsMenuKey == NEEDS_MENU_SET_TRUE) {
3194 sb.append(" needsMenuKey");
Wale Ogunwale393b1c12014-10-18 16:22:01 -07003195 }
Jorim Jaggi484851b2017-09-22 16:03:27 +02003196 if (mColorMode != COLOR_MODE_DEFAULT) {
3197 sb.append(" colorMode=").append(ActivityInfo.colorModeToString(mColorMode));
3198 }
3199 sb.append(System.lineSeparator());
3200 sb.append(prefix).append(" fl=").append(
3201 ViewDebug.flagsToString(LayoutParams.class, "flags", flags));
3202 if (privateFlags != 0) {
3203 sb.append(System.lineSeparator());
3204 sb.append(prefix).append(" pfl=").append(ViewDebug.flagsToString(
3205 LayoutParams.class, "privateFlags", privateFlags));
3206 }
3207 if (systemUiVisibility != 0) {
3208 sb.append(System.lineSeparator());
3209 sb.append(prefix).append(" sysui=").append(ViewDebug.flagsToString(
3210 View.class, "mSystemUiVisibility", systemUiVisibility));
3211 }
3212 if (subtreeSystemUiVisibility != 0) {
3213 sb.append(System.lineSeparator());
3214 sb.append(prefix).append(" vsysui=").append(ViewDebug.flagsToString(
3215 View.class, "mSystemUiVisibility", subtreeSystemUiVisibility));
3216 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003217 sb.append('}');
3218 return sb.toString();
3219 }
Mitsuru Oshima8d112672009-04-27 12:01:23 -07003220
Mitsuru Oshima3d914922009-05-13 22:29:15 -07003221 /**
Steven Timotiusaf03df62017-07-18 16:56:43 -07003222 * @hide
3223 */
3224 public void writeToProto(ProtoOutputStream proto, long fieldId) {
3225 final long token = proto.start(fieldId);
Vishnu Nair1d0fa072018-01-04 07:53:00 -08003226 proto.write(TYPE, type);
3227 proto.write(X, x);
3228 proto.write(Y, y);
3229 proto.write(WIDTH, width);
3230 proto.write(HEIGHT, height);
3231 proto.write(HORIZONTAL_MARGIN, horizontalMargin);
3232 proto.write(VERTICAL_MARGIN, verticalMargin);
3233 proto.write(GRAVITY, gravity);
3234 proto.write(SOFT_INPUT_MODE, softInputMode);
3235 proto.write(FORMAT, format);
3236 proto.write(WINDOW_ANIMATIONS, windowAnimations);
3237 proto.write(ALPHA, alpha);
3238 proto.write(SCREEN_BRIGHTNESS, screenBrightness);
3239 proto.write(BUTTON_BRIGHTNESS, buttonBrightness);
3240 proto.write(ROTATION_ANIMATION, rotationAnimation);
3241 proto.write(PREFERRED_REFRESH_RATE, preferredRefreshRate);
3242 proto.write(WindowLayoutParamsProto.PREFERRED_DISPLAY_MODE_ID, preferredDisplayModeId);
3243 proto.write(HAS_SYSTEM_UI_LISTENERS, hasSystemUiListeners);
3244 proto.write(INPUT_FEATURE_FLAGS, inputFeatures);
3245 proto.write(USER_ACTIVITY_TIMEOUT, userActivityTimeout);
3246 proto.write(NEEDS_MENU_KEY, needsMenuKey);
3247 proto.write(COLOR_MODE, mColorMode);
3248 proto.write(FLAGS, flags);
Vishnu Nair1d0fa072018-01-04 07:53:00 -08003249 proto.write(PRIVATE_FLAGS, privateFlags);
3250 proto.write(SYSTEM_UI_VISIBILITY_FLAGS, systemUiVisibility);
3251 proto.write(SUBTREE_SYSTEM_UI_VISIBILITY_FLAGS, subtreeSystemUiVisibility);
Steven Timotiusaf03df62017-07-18 16:56:43 -07003252 proto.end(token);
3253 }
3254
3255 /**
Mitsuru Oshima3d914922009-05-13 22:29:15 -07003256 * Scale the layout params' coordinates and size.
Mitsuru Oshima64f59342009-06-21 00:03:11 -07003257 * @hide
Mitsuru Oshima3d914922009-05-13 22:29:15 -07003258 */
Mitsuru Oshima64f59342009-06-21 00:03:11 -07003259 public void scale(float scale) {
Mitsuru Oshima61324e52009-07-21 15:40:36 -07003260 x = (int) (x * scale + 0.5f);
3261 y = (int) (y * scale + 0.5f);
Mitsuru Oshimae5fb3282009-06-09 21:16:08 -07003262 if (width > 0) {
Mitsuru Oshima61324e52009-07-21 15:40:36 -07003263 width = (int) (width * scale + 0.5f);
Mitsuru Oshimae5fb3282009-06-09 21:16:08 -07003264 }
3265 if (height > 0) {
Mitsuru Oshima61324e52009-07-21 15:40:36 -07003266 height = (int) (height * scale + 0.5f);
Mitsuru Oshima8d112672009-04-27 12:01:23 -07003267 }
3268 }
3269
Mitsuru Oshima3d914922009-05-13 22:29:15 -07003270 /**
Mitsuru Oshimae5fb3282009-06-09 21:16:08 -07003271 * Backup the layout parameters used in compatibility mode.
3272 * @see LayoutParams#restore()
Mitsuru Oshima3d914922009-05-13 22:29:15 -07003273 */
Mathew Inwooda570dee2018-08-17 14:56:00 +01003274 @UnsupportedAppUsage
Mitsuru Oshimae5fb3282009-06-09 21:16:08 -07003275 void backup() {
3276 int[] backup = mCompatibilityParamsBackup;
3277 if (backup == null) {
Mitsuru Oshima64f59342009-06-21 00:03:11 -07003278 // we backup 4 elements, x, y, width, height
3279 backup = mCompatibilityParamsBackup = new int[4];
Mitsuru Oshima3d914922009-05-13 22:29:15 -07003280 }
Mitsuru Oshimae5fb3282009-06-09 21:16:08 -07003281 backup[0] = x;
3282 backup[1] = y;
3283 backup[2] = width;
3284 backup[3] = height;
Mitsuru Oshimae5fb3282009-06-09 21:16:08 -07003285 }
3286
3287 /**
3288 * Restore the layout params' coordinates, size and gravity
3289 * @see LayoutParams#backup()
3290 */
Mathew Inwooda570dee2018-08-17 14:56:00 +01003291 @UnsupportedAppUsage
Mitsuru Oshimae5fb3282009-06-09 21:16:08 -07003292 void restore() {
3293 int[] backup = mCompatibilityParamsBackup;
3294 if (backup != null) {
3295 x = backup[0];
3296 y = backup[1];
3297 width = backup[2];
Mitsuru Oshima3d914922009-05-13 22:29:15 -07003298 height = backup[3];
3299 }
3300 }
3301
Wale Ogunwaleb6e2ead2016-02-15 08:28:47 -08003302 private CharSequence mTitle = null;
Siva Velusamy0d857b92015-04-22 10:23:56 -07003303
3304 /** @hide */
3305 @Override
3306 protected void encodeProperties(@NonNull ViewHierarchyEncoder encoder) {
3307 super.encodeProperties(encoder);
3308
3309 encoder.addProperty("x", x);
3310 encoder.addProperty("y", y);
3311 encoder.addProperty("horizontalWeight", horizontalWeight);
3312 encoder.addProperty("verticalWeight", verticalWeight);
3313 encoder.addProperty("type", type);
3314 encoder.addProperty("flags", flags);
3315 }
Jorim Jaggie6c6ecb2017-07-20 18:09:20 +02003316
3317 /**
3318 * @hide
3319 * @return True if the layout parameters will cause the window to cover the full screen;
3320 * false otherwise.
3321 */
3322 public boolean isFullscreen() {
3323 return x == 0 && y == 0
3324 && width == WindowManager.LayoutParams.MATCH_PARENT
3325 && height == WindowManager.LayoutParams.MATCH_PARENT;
3326 }
Jorim Jaggi484851b2017-09-22 16:03:27 +02003327
Adrian Roosfa02da62018-01-15 16:01:18 +01003328 private static String layoutInDisplayCutoutModeToString(
3329 @LayoutInDisplayCutoutMode int mode) {
3330 switch (mode) {
3331 case LAYOUT_IN_DISPLAY_CUTOUT_MODE_DEFAULT:
3332 return "default";
3333 case LAYOUT_IN_DISPLAY_CUTOUT_MODE_ALWAYS:
3334 return "always";
3335 case LAYOUT_IN_DISPLAY_CUTOUT_MODE_NEVER:
3336 return "never";
3337 default:
3338 return "unknown(" + mode + ")";
3339 }
3340 }
3341
Jorim Jaggi484851b2017-09-22 16:03:27 +02003342 private static String softInputModeToString(@SoftInputModeFlags int softInputMode) {
3343 final StringBuilder result = new StringBuilder();
3344 final int state = softInputMode & SOFT_INPUT_MASK_STATE;
3345 if (state != 0) {
3346 result.append("state=");
3347 switch (state) {
3348 case SOFT_INPUT_STATE_UNCHANGED:
3349 result.append("unchanged");
3350 break;
3351 case SOFT_INPUT_STATE_HIDDEN:
3352 result.append("hidden");
3353 break;
3354 case SOFT_INPUT_STATE_ALWAYS_HIDDEN:
3355 result.append("always_hidden");
3356 break;
3357 case SOFT_INPUT_STATE_VISIBLE:
3358 result.append("visible");
3359 break;
3360 case SOFT_INPUT_STATE_ALWAYS_VISIBLE:
3361 result.append("always_visible");
3362 break;
3363 default:
3364 result.append(state);
3365 break;
3366 }
3367 result.append(' ');
3368 }
3369 final int adjust = softInputMode & SOFT_INPUT_MASK_ADJUST;
3370 if (adjust != 0) {
3371 result.append("adjust=");
3372 switch (adjust) {
3373 case SOFT_INPUT_ADJUST_RESIZE:
3374 result.append("resize");
3375 break;
3376 case SOFT_INPUT_ADJUST_PAN:
3377 result.append("pan");
3378 break;
3379 case SOFT_INPUT_ADJUST_NOTHING:
3380 result.append("nothing");
3381 break;
3382 default:
3383 result.append(adjust);
3384 break;
3385 }
3386 result.append(' ');
3387 }
3388 if ((softInputMode & SOFT_INPUT_IS_FORWARD_NAVIGATION) != 0) {
3389 result.append("forwardNavigation").append(' ');
3390 }
3391 result.deleteCharAt(result.length() - 1);
3392 return result.toString();
3393 }
3394
3395 private static String rotationAnimationToString(int rotationAnimation) {
3396 switch (rotationAnimation) {
3397 case ROTATION_ANIMATION_UNSPECIFIED:
3398 return "UNSPECIFIED";
3399 case ROTATION_ANIMATION_ROTATE:
3400 return "ROTATE";
3401 case ROTATION_ANIMATION_CROSSFADE:
3402 return "CROSSFADE";
3403 case ROTATION_ANIMATION_JUMPCUT:
3404 return "JUMPCUT";
3405 case ROTATION_ANIMATION_SEAMLESS:
3406 return "SEAMLESS";
3407 default:
3408 return Integer.toString(rotationAnimation);
3409 }
3410 }
3411
3412 private static String inputFeatureToString(int inputFeature) {
3413 switch (inputFeature) {
3414 case INPUT_FEATURE_DISABLE_POINTER_GESTURES:
3415 return "DISABLE_POINTER_GESTURES";
3416 case INPUT_FEATURE_NO_INPUT_CHANNEL:
3417 return "NO_INPUT_CHANNEL";
3418 case INPUT_FEATURE_DISABLE_USER_ACTIVITY:
3419 return "DISABLE_USER_ACTIVITY";
3420 default:
3421 return Integer.toString(inputFeature);
3422 }
3423 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003424 }
3425}