• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
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 
17 package android.view;
18 
19 import android.annotation.ColorInt;
20 import android.annotation.DrawableRes;
21 import android.annotation.IdRes;
22 import android.annotation.LayoutRes;
23 import android.annotation.NonNull;
24 import android.annotation.Nullable;
25 import android.annotation.StyleRes;
26 import android.annotation.SystemApi;
27 import android.app.ActivityManagerNative;
28 import android.content.Context;
29 import android.content.res.Configuration;
30 import android.content.res.Resources;
31 import android.content.res.TypedArray;
32 import android.graphics.PixelFormat;
33 import android.graphics.Rect;
34 import android.graphics.drawable.Drawable;
35 import android.media.session.MediaController;
36 import android.net.Uri;
37 import android.os.Bundle;
38 import android.os.Handler;
39 import android.os.IBinder;
40 import android.os.RemoteException;
41 import android.os.SystemProperties;
42 import android.transition.Scene;
43 import android.transition.Transition;
44 import android.transition.TransitionManager;
45 import android.view.accessibility.AccessibilityEvent;
46 
47 import static android.view.WindowManager.LayoutParams.FLAG_HARDWARE_ACCELERATED;
48 
49 import java.util.List;
50 
51 /**
52  * Abstract base class for a top-level window look and behavior policy.  An
53  * instance of this class should be used as the top-level view added to the
54  * window manager. It provides standard UI policies such as a background, title
55  * area, default key processing, etc.
56  *
57  * <p>The only existing implementation of this abstract class is
58  * android.view.PhoneWindow, which you should instantiate when needing a
59  * Window.
60  */
61 public abstract class Window {
62     /** Flag for the "options panel" feature.  This is enabled by default. */
63     public static final int FEATURE_OPTIONS_PANEL = 0;
64     /** Flag for the "no title" feature, turning off the title at the top
65      *  of the screen. */
66     public static final int FEATURE_NO_TITLE = 1;
67 
68     /**
69      * Flag for the progress indicator feature.
70      *
71      * @deprecated No longer supported starting in API 21.
72      */
73     @Deprecated
74     public static final int FEATURE_PROGRESS = 2;
75 
76     /** Flag for having an icon on the left side of the title bar */
77     public static final int FEATURE_LEFT_ICON = 3;
78     /** Flag for having an icon on the right side of the title bar */
79     public static final int FEATURE_RIGHT_ICON = 4;
80 
81     /**
82      * Flag for indeterminate progress.
83      *
84      * @deprecated No longer supported starting in API 21.
85      */
86     @Deprecated
87     public static final int FEATURE_INDETERMINATE_PROGRESS = 5;
88 
89     /** Flag for the context menu.  This is enabled by default. */
90     public static final int FEATURE_CONTEXT_MENU = 6;
91     /** Flag for custom title. You cannot combine this feature with other title features. */
92     public static final int FEATURE_CUSTOM_TITLE = 7;
93     /**
94      * Flag for enabling the Action Bar.
95      * This is enabled by default for some devices. The Action Bar
96      * replaces the title bar and provides an alternate location
97      * for an on-screen menu button on some devices.
98      */
99     public static final int FEATURE_ACTION_BAR = 8;
100     /**
101      * Flag for requesting an Action Bar that overlays window content.
102      * Normally an Action Bar will sit in the space above window content, but if this
103      * feature is requested along with {@link #FEATURE_ACTION_BAR} it will be layered over
104      * the window content itself. This is useful if you would like your app to have more control
105      * over how the Action Bar is displayed, such as letting application content scroll beneath
106      * an Action Bar with a transparent background or otherwise displaying a transparent/translucent
107      * Action Bar over application content.
108      *
109      * <p>This mode is especially useful with {@link View#SYSTEM_UI_FLAG_FULLSCREEN
110      * View.SYSTEM_UI_FLAG_FULLSCREEN}, which allows you to seamlessly hide the
111      * action bar in conjunction with other screen decorations.
112      *
113      * <p>As of {@link android.os.Build.VERSION_CODES#JELLY_BEAN}, when an
114      * ActionBar is in this mode it will adjust the insets provided to
115      * {@link View#fitSystemWindows(android.graphics.Rect) View.fitSystemWindows(Rect)}
116      * to include the content covered by the action bar, so you can do layout within
117      * that space.
118      */
119     public static final int FEATURE_ACTION_BAR_OVERLAY = 9;
120     /**
121      * Flag for specifying the behavior of action modes when an Action Bar is not present.
122      * If overlay is enabled, the action mode UI will be allowed to cover existing window content.
123      */
124     public static final int FEATURE_ACTION_MODE_OVERLAY = 10;
125     /**
126      * Flag for requesting a decoration-free window that is dismissed by swiping from the left.
127      */
128     public static final int FEATURE_SWIPE_TO_DISMISS = 11;
129     /**
130      * Flag for requesting that window content changes should be animated using a
131      * TransitionManager.
132      *
133      * <p>The TransitionManager is set using
134      * {@link #setTransitionManager(android.transition.TransitionManager)}. If none is set,
135      * a default TransitionManager will be used.</p>
136      *
137      * @see #setContentView
138      */
139     public static final int FEATURE_CONTENT_TRANSITIONS = 12;
140 
141     /**
142      * Enables Activities to run Activity Transitions either through sending or receiving
143      * ActivityOptions bundle created with
144      * {@link android.app.ActivityOptions#makeSceneTransitionAnimation(android.app.Activity,
145      * android.util.Pair[])} or {@link android.app.ActivityOptions#makeSceneTransitionAnimation(
146      * android.app.Activity, View, String)}.
147      */
148     public static final int FEATURE_ACTIVITY_TRANSITIONS = 13;
149 
150     /**
151      * Max value used as a feature ID
152      * @hide
153      */
154     public static final int FEATURE_MAX = FEATURE_ACTIVITY_TRANSITIONS;
155 
156     /**
157      * Flag for setting the progress bar's visibility to VISIBLE.
158      *
159      * @deprecated {@link #FEATURE_PROGRESS} and related methods are no longer
160      *             supported starting in API 21.
161      */
162     @Deprecated
163     public static final int PROGRESS_VISIBILITY_ON = -1;
164 
165     /**
166      * Flag for setting the progress bar's visibility to GONE.
167      *
168      * @deprecated {@link #FEATURE_PROGRESS} and related methods are no longer
169      *             supported starting in API 21.
170      */
171     @Deprecated
172     public static final int PROGRESS_VISIBILITY_OFF = -2;
173 
174     /**
175      * Flag for setting the progress bar's indeterminate mode on.
176      *
177      * @deprecated {@link #FEATURE_INDETERMINATE_PROGRESS} and related methods
178      *             are no longer supported starting in API 21.
179      */
180     @Deprecated
181     public static final int PROGRESS_INDETERMINATE_ON = -3;
182 
183     /**
184      * Flag for setting the progress bar's indeterminate mode off.
185      *
186      * @deprecated {@link #FEATURE_INDETERMINATE_PROGRESS} and related methods
187      *             are no longer supported starting in API 21.
188      */
189     @Deprecated
190     public static final int PROGRESS_INDETERMINATE_OFF = -4;
191 
192     /**
193      * Starting value for the (primary) progress.
194      *
195      * @deprecated {@link #FEATURE_PROGRESS} and related methods are no longer
196      *             supported starting in API 21.
197      */
198     @Deprecated
199     public static final int PROGRESS_START = 0;
200 
201     /**
202      * Ending value for the (primary) progress.
203      *
204      * @deprecated {@link #FEATURE_PROGRESS} and related methods are no longer
205      *             supported starting in API 21.
206      */
207     @Deprecated
208     public static final int PROGRESS_END = 10000;
209 
210     /**
211      * Lowest possible value for the secondary progress.
212      *
213      * @deprecated {@link #FEATURE_PROGRESS} and related methods are no longer
214      *             supported starting in API 21.
215      */
216     @Deprecated
217     public static final int PROGRESS_SECONDARY_START = 20000;
218 
219     /**
220      * Highest possible value for the secondary progress.
221      *
222      * @deprecated {@link #FEATURE_PROGRESS} and related methods are no longer
223      *             supported starting in API 21.
224      */
225     @Deprecated
226     public static final int PROGRESS_SECONDARY_END = 30000;
227 
228     /**
229      * The transitionName for the status bar background View when a custom background is used.
230      * @see android.view.Window#setStatusBarColor(int)
231      */
232     public static final String STATUS_BAR_BACKGROUND_TRANSITION_NAME = "android:status:background";
233 
234     /**
235      * The transitionName for the navigation bar background View when a custom background is used.
236      * @see android.view.Window#setNavigationBarColor(int)
237      */
238     public static final String NAVIGATION_BAR_BACKGROUND_TRANSITION_NAME =
239             "android:navigation:background";
240 
241     /**
242      * The default features enabled.
243      * @deprecated use {@link #getDefaultFeatures(android.content.Context)} instead.
244      */
245     @Deprecated
246     @SuppressWarnings({"PointlessBitwiseExpression"})
247     protected static final int DEFAULT_FEATURES = (1 << FEATURE_OPTIONS_PANEL) |
248             (1 << FEATURE_CONTEXT_MENU);
249 
250     /**
251      * The ID that the main layout in the XML layout file should have.
252      */
253     public static final int ID_ANDROID_CONTENT = com.android.internal.R.id.content;
254 
255     private static final String PROPERTY_HARDWARE_UI = "persist.sys.ui.hw";
256 
257     /**
258      * Flag for letting the theme drive the color of the window caption controls. Use with
259      * {@link #setDecorCaptionShade(int)}. This is the default value.
260      */
261     public static final int DECOR_CAPTION_SHADE_AUTO = 0;
262     /**
263      * Flag for setting light-color controls on the window caption. Use with
264      * {@link #setDecorCaptionShade(int)}.
265      */
266     public static final int DECOR_CAPTION_SHADE_LIGHT = 1;
267     /**
268      * Flag for setting dark-color controls on the window caption. Use with
269      * {@link #setDecorCaptionShade(int)}.
270      */
271     public static final int DECOR_CAPTION_SHADE_DARK = 2;
272 
273     private final Context mContext;
274 
275     private TypedArray mWindowStyle;
276     private Callback mCallback;
277     private OnWindowDismissedCallback mOnWindowDismissedCallback;
278     private OnWindowSwipeDismissedCallback mOnWindowSwipeDismissedCallback;
279     private WindowControllerCallback mWindowControllerCallback;
280     private OnRestrictedCaptionAreaChangedListener mOnRestrictedCaptionAreaChangedListener;
281     private Rect mRestrictedCaptionAreaRect;
282     private WindowManager mWindowManager;
283     private IBinder mAppToken;
284     private String mAppName;
285     private boolean mHardwareAccelerated;
286     private Window mContainer;
287     private Window mActiveChild;
288     private boolean mIsActive = false;
289     private boolean mHasChildren = false;
290     private boolean mCloseOnTouchOutside = false;
291     private boolean mSetCloseOnTouchOutside = false;
292     private int mForcedWindowFlags = 0;
293 
294     private int mFeatures;
295     private int mLocalFeatures;
296 
297     private boolean mHaveWindowFormat = false;
298     private boolean mHaveDimAmount = false;
299     private int mDefaultWindowFormat = PixelFormat.OPAQUE;
300 
301     private boolean mHasSoftInputMode = false;
302 
303     private boolean mDestroyed;
304 
305     private boolean mOverlayWithDecorCaptionEnabled = false;
306     private boolean mCloseOnSwipeEnabled = false;
307 
308     // The current window attributes.
309     private final WindowManager.LayoutParams mWindowAttributes =
310         new WindowManager.LayoutParams();
311 
312     /**
313      * API from a Window back to its caller.  This allows the client to
314      * intercept key dispatching, panels and menus, etc.
315      */
316     public interface Callback {
317         /**
318          * Called to process key events.  At the very least your
319          * implementation must call
320          * {@link android.view.Window#superDispatchKeyEvent} to do the
321          * standard key processing.
322          *
323          * @param event The key event.
324          *
325          * @return boolean Return true if this event was consumed.
326          */
dispatchKeyEvent(KeyEvent event)327         public boolean dispatchKeyEvent(KeyEvent event);
328 
329         /**
330          * Called to process a key shortcut event.
331          * At the very least your implementation must call
332          * {@link android.view.Window#superDispatchKeyShortcutEvent} to do the
333          * standard key shortcut processing.
334          *
335          * @param event The key shortcut event.
336          * @return True if this event was consumed.
337          */
dispatchKeyShortcutEvent(KeyEvent event)338         public boolean dispatchKeyShortcutEvent(KeyEvent event);
339 
340         /**
341          * Called to process touch screen events.  At the very least your
342          * implementation must call
343          * {@link android.view.Window#superDispatchTouchEvent} to do the
344          * standard touch screen processing.
345          *
346          * @param event The touch screen event.
347          *
348          * @return boolean Return true if this event was consumed.
349          */
dispatchTouchEvent(MotionEvent event)350         public boolean dispatchTouchEvent(MotionEvent event);
351 
352         /**
353          * Called to process trackball events.  At the very least your
354          * implementation must call
355          * {@link android.view.Window#superDispatchTrackballEvent} to do the
356          * standard trackball processing.
357          *
358          * @param event The trackball event.
359          *
360          * @return boolean Return true if this event was consumed.
361          */
dispatchTrackballEvent(MotionEvent event)362         public boolean dispatchTrackballEvent(MotionEvent event);
363 
364         /**
365          * Called to process generic motion events.  At the very least your
366          * implementation must call
367          * {@link android.view.Window#superDispatchGenericMotionEvent} to do the
368          * standard processing.
369          *
370          * @param event The generic motion event.
371          *
372          * @return boolean Return true if this event was consumed.
373          */
dispatchGenericMotionEvent(MotionEvent event)374         public boolean dispatchGenericMotionEvent(MotionEvent event);
375 
376         /**
377          * Called to process population of {@link AccessibilityEvent}s.
378          *
379          * @param event The event.
380          *
381          * @return boolean Return true if event population was completed.
382          */
dispatchPopulateAccessibilityEvent(AccessibilityEvent event)383         public boolean dispatchPopulateAccessibilityEvent(AccessibilityEvent event);
384 
385         /**
386          * Instantiate the view to display in the panel for 'featureId'.
387          * You can return null, in which case the default content (typically
388          * a menu) will be created for you.
389          *
390          * @param featureId Which panel is being created.
391          *
392          * @return view The top-level view to place in the panel.
393          *
394          * @see #onPreparePanel
395          */
396         @Nullable
onCreatePanelView(int featureId)397         public View onCreatePanelView(int featureId);
398 
399         /**
400          * Initialize the contents of the menu for panel 'featureId'.  This is
401          * called if onCreatePanelView() returns null, giving you a standard
402          * menu in which you can place your items.  It is only called once for
403          * the panel, the first time it is shown.
404          *
405          * <p>You can safely hold on to <var>menu</var> (and any items created
406          * from it), making modifications to it as desired, until the next
407          * time onCreatePanelMenu() is called for this feature.
408          *
409          * @param featureId The panel being created.
410          * @param menu The menu inside the panel.
411          *
412          * @return boolean You must return true for the panel to be displayed;
413          *         if you return false it will not be shown.
414          */
onCreatePanelMenu(int featureId, Menu menu)415         public boolean onCreatePanelMenu(int featureId, Menu menu);
416 
417         /**
418          * Prepare a panel to be displayed.  This is called right before the
419          * panel window is shown, every time it is shown.
420          *
421          * @param featureId The panel that is being displayed.
422          * @param view The View that was returned by onCreatePanelView().
423          * @param menu If onCreatePanelView() returned null, this is the Menu
424          *             being displayed in the panel.
425          *
426          * @return boolean You must return true for the panel to be displayed;
427          *         if you return false it will not be shown.
428          *
429          * @see #onCreatePanelView
430          */
onPreparePanel(int featureId, View view, Menu menu)431         public boolean onPreparePanel(int featureId, View view, Menu menu);
432 
433         /**
434          * Called when a panel's menu is opened by the user. This may also be
435          * called when the menu is changing from one type to another (for
436          * example, from the icon menu to the expanded menu).
437          *
438          * @param featureId The panel that the menu is in.
439          * @param menu The menu that is opened.
440          * @return Return true to allow the menu to open, or false to prevent
441          *         the menu from opening.
442          */
onMenuOpened(int featureId, Menu menu)443         public boolean onMenuOpened(int featureId, Menu menu);
444 
445         /**
446          * Called when a panel's menu item has been selected by the user.
447          *
448          * @param featureId The panel that the menu is in.
449          * @param item The menu item that was selected.
450          *
451          * @return boolean Return true to finish processing of selection, or
452          *         false to perform the normal menu handling (calling its
453          *         Runnable or sending a Message to its target Handler).
454          */
onMenuItemSelected(int featureId, MenuItem item)455         public boolean onMenuItemSelected(int featureId, MenuItem item);
456 
457         /**
458          * This is called whenever the current window attributes change.
459          *
460          */
onWindowAttributesChanged(WindowManager.LayoutParams attrs)461         public void onWindowAttributesChanged(WindowManager.LayoutParams attrs);
462 
463         /**
464          * This hook is called whenever the content view of the screen changes
465          * (due to a call to
466          * {@link Window#setContentView(View, android.view.ViewGroup.LayoutParams)
467          * Window.setContentView} or
468          * {@link Window#addContentView(View, android.view.ViewGroup.LayoutParams)
469          * Window.addContentView}).
470          */
onContentChanged()471         public void onContentChanged();
472 
473         /**
474          * This hook is called whenever the window focus changes.  See
475          * {@link View#onWindowFocusChanged(boolean)
476          * View.onWindowFocusChangedNotLocked(boolean)} for more information.
477          *
478          * @param hasFocus Whether the window now has focus.
479          */
onWindowFocusChanged(boolean hasFocus)480         public void onWindowFocusChanged(boolean hasFocus);
481 
482         /**
483          * Called when the window has been attached to the window manager.
484          * See {@link View#onAttachedToWindow() View.onAttachedToWindow()}
485          * for more information.
486          */
onAttachedToWindow()487         public void onAttachedToWindow();
488 
489         /**
490          * Called when the window has been attached to the window manager.
491          * See {@link View#onDetachedFromWindow() View.onDetachedFromWindow()}
492          * for more information.
493          */
onDetachedFromWindow()494         public void onDetachedFromWindow();
495 
496         /**
497          * Called when a panel is being closed.  If another logical subsequent
498          * panel is being opened (and this panel is being closed to make room for the subsequent
499          * panel), this method will NOT be called.
500          *
501          * @param featureId The panel that is being displayed.
502          * @param menu If onCreatePanelView() returned null, this is the Menu
503          *            being displayed in the panel.
504          */
onPanelClosed(int featureId, Menu menu)505         public void onPanelClosed(int featureId, Menu menu);
506 
507         /**
508          * Called when the user signals the desire to start a search.
509          *
510          * @return true if search launched, false if activity refuses (blocks)
511          *
512          * @see android.app.Activity#onSearchRequested()
513          */
onSearchRequested()514         public boolean onSearchRequested();
515 
516         /**
517          * Called when the user signals the desire to start a search.
518          *
519          * @param searchEvent A {@link SearchEvent} describing the signal to
520          *                   start a search.
521          * @return true if search launched, false if activity refuses (blocks)
522          */
onSearchRequested(SearchEvent searchEvent)523         public boolean onSearchRequested(SearchEvent searchEvent);
524 
525         /**
526          * Called when an action mode is being started for this window. Gives the
527          * callback an opportunity to handle the action mode in its own unique and
528          * beautiful way. If this method returns null the system can choose a way
529          * to present the mode or choose not to start the mode at all. This is equivalent
530          * to {@link #onWindowStartingActionMode(android.view.ActionMode.Callback, int)}
531          * with type {@link ActionMode#TYPE_PRIMARY}.
532          *
533          * @param callback Callback to control the lifecycle of this action mode
534          * @return The ActionMode that was started, or null if the system should present it
535          */
536         @Nullable
onWindowStartingActionMode(ActionMode.Callback callback)537         public ActionMode onWindowStartingActionMode(ActionMode.Callback callback);
538 
539         /**
540          * Called when an action mode is being started for this window. Gives the
541          * callback an opportunity to handle the action mode in its own unique and
542          * beautiful way. If this method returns null the system can choose a way
543          * to present the mode or choose not to start the mode at all.
544          *
545          * @param callback Callback to control the lifecycle of this action mode
546          * @param type One of {@link ActionMode#TYPE_PRIMARY} or {@link ActionMode#TYPE_FLOATING}.
547          * @return The ActionMode that was started, or null if the system should present it
548          */
549         @Nullable
onWindowStartingActionMode(ActionMode.Callback callback, int type)550         public ActionMode onWindowStartingActionMode(ActionMode.Callback callback, int type);
551 
552         /**
553          * Called when an action mode has been started. The appropriate mode callback
554          * method will have already been invoked.
555          *
556          * @param mode The new mode that has just been started.
557          */
onActionModeStarted(ActionMode mode)558         public void onActionModeStarted(ActionMode mode);
559 
560         /**
561          * Called when an action mode has been finished. The appropriate mode callback
562          * method will have already been invoked.
563          *
564          * @param mode The mode that was just finished.
565          */
onActionModeFinished(ActionMode mode)566         public void onActionModeFinished(ActionMode mode);
567 
568         /**
569          * Called when Keyboard Shortcuts are requested for the current window.
570          *
571          * @param data The data list to populate with shortcuts.
572          * @param menu The current menu, which may be null.
573          * @param deviceId The id for the connected device the shortcuts should be provided for.
574          */
onProvideKeyboardShortcuts( List<KeyboardShortcutGroup> data, @Nullable Menu menu, int deviceId)575         default public void onProvideKeyboardShortcuts(
576                 List<KeyboardShortcutGroup> data, @Nullable Menu menu, int deviceId) { };
577     }
578 
579     /** @hide */
580     public interface OnWindowDismissedCallback {
581         /**
582          * Called when a window is dismissed. This informs the callback that the
583          * window is gone, and it should finish itself.
584          * @param finishTask True if the task should also be finished.
585          * @param suppressWindowTransition True if the resulting exit and enter window transition
586          * animations should be suppressed.
587          */
onWindowDismissed(boolean finishTask, boolean suppressWindowTransition)588         void onWindowDismissed(boolean finishTask, boolean suppressWindowTransition);
589     }
590 
591     /** @hide */
592     public interface OnWindowSwipeDismissedCallback {
593         /**
594          * Called when a window is swipe dismissed. This informs the callback that the
595          * window is gone, and it should finish itself.
596          * @param finishTask True if the task should also be finished.
597          * @param suppressWindowTransition True if the resulting exit and enter window transition
598          * animations should be suppressed.
599          */
onWindowSwipeDismissed()600         void onWindowSwipeDismissed();
601     }
602 
603     /** @hide */
604     public interface WindowControllerCallback {
605         /**
606          * Moves the activity from
607          * {@link android.app.ActivityManager.StackId#FREEFORM_WORKSPACE_STACK_ID} to
608          * {@link android.app.ActivityManager.StackId#FULLSCREEN_WORKSPACE_STACK_ID} stack.
609          */
exitFreeformMode()610         void exitFreeformMode() throws RemoteException;
611 
612         /**
613          * Puts the activity in picture-in-picture mode if the activity supports.
614          * @see android.R.attr#supportsPictureInPicture
615          */
enterPictureInPictureModeIfPossible()616         void enterPictureInPictureModeIfPossible();
617 
618         /** Returns the current stack Id for the window. */
getWindowStackId()619         int getWindowStackId() throws RemoteException;
620     }
621 
622     /**
623      * Callback for clients that want to be aware of where caption draws content.
624      */
625     public interface OnRestrictedCaptionAreaChangedListener {
626         /**
627          * Called when the area where caption draws content changes.
628          *
629          * @param rect The area where caption content is positioned, relative to the top view.
630          */
onRestrictedCaptionAreaChanged(Rect rect)631         void onRestrictedCaptionAreaChanged(Rect rect);
632     }
633 
634     /**
635      * Callback for clients that want frame timing information for each
636      * frame rendered by the Window.
637      */
638     public interface OnFrameMetricsAvailableListener {
639         /**
640          * Called when information is available for the previously rendered frame.
641          *
642          * Reports can be dropped if this callback takes too
643          * long to execute, as the report producer cannot wait for the consumer to
644          * complete.
645          *
646          * It is highly recommended that clients copy the passed in FrameMetrics
647          * via {@link FrameMetrics#FrameMetrics(FrameMetrics)} within this method and defer
648          * additional computation or storage to another thread to avoid unnecessarily
649          * dropping reports.
650          *
651          * @param window The {@link Window} on which the frame was displayed.
652          * @param frameMetrics the available metrics. This object is reused on every call
653          * and thus <strong>this reference is not valid outside the scope of this method</strong>.
654          * @param dropCountSinceLastInvocation the number of reports dropped since the last time
655          * this callback was invoked.
656          */
onFrameMetricsAvailable(Window window, FrameMetrics frameMetrics, int dropCountSinceLastInvocation)657         void onFrameMetricsAvailable(Window window, FrameMetrics frameMetrics,
658                 int dropCountSinceLastInvocation);
659     }
660 
661 
Window(Context context)662     public Window(Context context) {
663         mContext = context;
664         mFeatures = mLocalFeatures = getDefaultFeatures(context);
665     }
666 
667     /**
668      * Return the Context this window policy is running in, for retrieving
669      * resources and other information.
670      *
671      * @return Context The Context that was supplied to the constructor.
672      */
getContext()673     public final Context getContext() {
674         return mContext;
675     }
676 
677     /**
678      * Return the {@link android.R.styleable#Window} attributes from this
679      * window's theme.
680      */
getWindowStyle()681     public final TypedArray getWindowStyle() {
682         synchronized (this) {
683             if (mWindowStyle == null) {
684                 mWindowStyle = mContext.obtainStyledAttributes(
685                         com.android.internal.R.styleable.Window);
686             }
687             return mWindowStyle;
688         }
689     }
690 
691     /**
692      * Set the container for this window.  If not set, the DecorWindow
693      * operates as a top-level window; otherwise, it negotiates with the
694      * container to display itself appropriately.
695      *
696      * @param container The desired containing Window.
697      */
setContainer(Window container)698     public void setContainer(Window container) {
699         mContainer = container;
700         if (container != null) {
701             // Embedded screens never have a title.
702             mFeatures |= 1<<FEATURE_NO_TITLE;
703             mLocalFeatures |= 1<<FEATURE_NO_TITLE;
704             container.mHasChildren = true;
705         }
706     }
707 
708     /**
709      * Return the container for this Window.
710      *
711      * @return Window The containing window, or null if this is a
712      *         top-level window.
713      */
getContainer()714     public final Window getContainer() {
715         return mContainer;
716     }
717 
hasChildren()718     public final boolean hasChildren() {
719         return mHasChildren;
720     }
721 
722     /** @hide */
destroy()723     public final void destroy() {
724         mDestroyed = true;
725     }
726 
727     /** @hide */
isDestroyed()728     public final boolean isDestroyed() {
729         return mDestroyed;
730     }
731 
732     /**
733      * Set the window manager for use by this Window to, for example,
734      * display panels.  This is <em>not</em> used for displaying the
735      * Window itself -- that must be done by the client.
736      *
737      * @param wm The window manager for adding new windows.
738      */
setWindowManager(WindowManager wm, IBinder appToken, String appName)739     public void setWindowManager(WindowManager wm, IBinder appToken, String appName) {
740         setWindowManager(wm, appToken, appName, false);
741     }
742 
743     /**
744      * Set the window manager for use by this Window to, for example,
745      * display panels.  This is <em>not</em> used for displaying the
746      * Window itself -- that must be done by the client.
747      *
748      * @param wm The window manager for adding new windows.
749      */
setWindowManager(WindowManager wm, IBinder appToken, String appName, boolean hardwareAccelerated)750     public void setWindowManager(WindowManager wm, IBinder appToken, String appName,
751             boolean hardwareAccelerated) {
752         mAppToken = appToken;
753         mAppName = appName;
754         mHardwareAccelerated = hardwareAccelerated
755                 || SystemProperties.getBoolean(PROPERTY_HARDWARE_UI, false);
756         if (wm == null) {
757             wm = (WindowManager)mContext.getSystemService(Context.WINDOW_SERVICE);
758         }
759         mWindowManager = ((WindowManagerImpl)wm).createLocalWindowManager(this);
760     }
761 
adjustLayoutParamsForSubWindow(WindowManager.LayoutParams wp)762     void adjustLayoutParamsForSubWindow(WindowManager.LayoutParams wp) {
763         CharSequence curTitle = wp.getTitle();
764         if (wp.type >= WindowManager.LayoutParams.FIRST_SUB_WINDOW &&
765                 wp.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
766             if (wp.token == null) {
767                 View decor = peekDecorView();
768                 if (decor != null) {
769                     wp.token = decor.getWindowToken();
770                 }
771             }
772             if (curTitle == null || curTitle.length() == 0) {
773                 final StringBuilder title = new StringBuilder(32);
774                 if (wp.type == WindowManager.LayoutParams.TYPE_APPLICATION_MEDIA) {
775                     title.append("Media");
776                 } else if (wp.type == WindowManager.LayoutParams.TYPE_APPLICATION_MEDIA_OVERLAY) {
777                     title.append("MediaOvr");
778                 } else if (wp.type == WindowManager.LayoutParams.TYPE_APPLICATION_PANEL) {
779                     title.append("Panel");
780                 } else if (wp.type == WindowManager.LayoutParams.TYPE_APPLICATION_SUB_PANEL) {
781                     title.append("SubPanel");
782                 } else if (wp.type == WindowManager.LayoutParams.TYPE_APPLICATION_ABOVE_SUB_PANEL) {
783                     title.append("AboveSubPanel");
784                 } else if (wp.type == WindowManager.LayoutParams.TYPE_APPLICATION_ATTACHED_DIALOG) {
785                     title.append("AtchDlg");
786                 } else {
787                     title.append(wp.type);
788                 }
789                 if (mAppName != null) {
790                     title.append(":").append(mAppName);
791                 }
792                 wp.setTitle(title);
793             }
794         } else if (wp.type >= WindowManager.LayoutParams.FIRST_SYSTEM_WINDOW &&
795                 wp.type <= WindowManager.LayoutParams.LAST_SYSTEM_WINDOW) {
796             // We don't set the app token to this system window because the life cycles should be
797             // independent. If an app creates a system window and then the app goes to the stopped
798             // state, the system window should not be affected (can still show and receive input
799             // events).
800             if (curTitle == null || curTitle.length() == 0) {
801                 final StringBuilder title = new StringBuilder(32);
802                 title.append("Sys").append(wp.type);
803                 if (mAppName != null) {
804                     title.append(":").append(mAppName);
805                 }
806                 wp.setTitle(title);
807             }
808         } else {
809             if (wp.token == null) {
810                 wp.token = mContainer == null ? mAppToken : mContainer.mAppToken;
811             }
812             if ((curTitle == null || curTitle.length() == 0)
813                     && mAppName != null) {
814                 wp.setTitle(mAppName);
815             }
816         }
817         if (wp.packageName == null) {
818             wp.packageName = mContext.getPackageName();
819         }
820         if (mHardwareAccelerated ||
821                 (mWindowAttributes.flags & FLAG_HARDWARE_ACCELERATED) != 0) {
822             wp.flags |= FLAG_HARDWARE_ACCELERATED;
823         }
824     }
825 
826     /**
827      * Return the window manager allowing this Window to display its own
828      * windows.
829      *
830      * @return WindowManager The ViewManager.
831      */
getWindowManager()832     public WindowManager getWindowManager() {
833         return mWindowManager;
834     }
835 
836     /**
837      * Set the Callback interface for this window, used to intercept key
838      * events and other dynamic operations in the window.
839      *
840      * @param callback The desired Callback interface.
841      */
setCallback(Callback callback)842     public void setCallback(Callback callback) {
843         mCallback = callback;
844     }
845 
846     /**
847      * Return the current Callback interface for this window.
848      */
getCallback()849     public final Callback getCallback() {
850         return mCallback;
851     }
852 
853     /**
854      * Set an observer to collect frame stats for each frame rendererd in this window.
855      *
856      * Must be in hardware rendering mode.
857      */
addOnFrameMetricsAvailableListener( @onNull OnFrameMetricsAvailableListener listener, Handler handler)858     public final void addOnFrameMetricsAvailableListener(
859             @NonNull OnFrameMetricsAvailableListener listener,
860             Handler handler) {
861         final View decorView = getDecorView();
862         if (decorView == null) {
863             throw new IllegalStateException("can't observe a Window without an attached view");
864         }
865 
866         if (listener == null) {
867             throw new NullPointerException("listener cannot be null");
868         }
869 
870         decorView.addFrameMetricsListener(this, listener, handler);
871     }
872 
873     /**
874      * Remove observer and stop listening to frame stats for this window.
875      */
removeOnFrameMetricsAvailableListener(OnFrameMetricsAvailableListener listener)876     public final void removeOnFrameMetricsAvailableListener(OnFrameMetricsAvailableListener listener) {
877         final View decorView = getDecorView();
878         if (decorView != null) {
879             getDecorView().removeFrameMetricsListener(listener);
880         }
881     }
882 
883     /** @hide */
setOnWindowDismissedCallback(OnWindowDismissedCallback dcb)884     public final void setOnWindowDismissedCallback(OnWindowDismissedCallback dcb) {
885         mOnWindowDismissedCallback = dcb;
886     }
887 
888     /** @hide */
dispatchOnWindowDismissed( boolean finishTask, boolean suppressWindowTransition)889     public final void dispatchOnWindowDismissed(
890             boolean finishTask, boolean suppressWindowTransition) {
891         if (mOnWindowDismissedCallback != null) {
892             mOnWindowDismissedCallback.onWindowDismissed(finishTask, suppressWindowTransition);
893         }
894     }
895 
896     /** @hide */
setOnWindowSwipeDismissedCallback(OnWindowSwipeDismissedCallback sdcb)897     public final void setOnWindowSwipeDismissedCallback(OnWindowSwipeDismissedCallback sdcb) {
898         mOnWindowSwipeDismissedCallback = sdcb;
899     }
900 
901     /** @hide */
dispatchOnWindowSwipeDismissed()902     public final void dispatchOnWindowSwipeDismissed() {
903         if (mOnWindowSwipeDismissedCallback != null) {
904             mOnWindowSwipeDismissedCallback.onWindowSwipeDismissed();
905         }
906     }
907 
908     /** @hide */
setWindowControllerCallback(WindowControllerCallback wccb)909     public final void setWindowControllerCallback(WindowControllerCallback wccb) {
910         mWindowControllerCallback = wccb;
911     }
912 
913     /** @hide */
getWindowControllerCallback()914     public final WindowControllerCallback getWindowControllerCallback() {
915         return mWindowControllerCallback;
916     }
917 
918     /**
919      * Set a callback for changes of area where caption will draw its content.
920      *
921      * @param listener Callback that will be called when the area changes.
922      */
setRestrictedCaptionAreaListener(OnRestrictedCaptionAreaChangedListener listener)923     public final void setRestrictedCaptionAreaListener(OnRestrictedCaptionAreaChangedListener listener) {
924         mOnRestrictedCaptionAreaChangedListener = listener;
925         mRestrictedCaptionAreaRect = listener != null ? new Rect() : null;
926     }
927 
928     /**
929      * Take ownership of this window's surface.  The window's view hierarchy
930      * will no longer draw into the surface, though it will otherwise continue
931      * to operate (such as for receiving input events).  The given SurfaceHolder
932      * callback will be used to tell you about state changes to the surface.
933      */
takeSurface(SurfaceHolder.Callback2 callback)934     public abstract void takeSurface(SurfaceHolder.Callback2 callback);
935 
936     /**
937      * Take ownership of this window's InputQueue.  The window will no
938      * longer read and dispatch input events from the queue; it is your
939      * responsibility to do so.
940      */
takeInputQueue(InputQueue.Callback callback)941     public abstract void takeInputQueue(InputQueue.Callback callback);
942 
943     /**
944      * Return whether this window is being displayed with a floating style
945      * (based on the {@link android.R.attr#windowIsFloating} attribute in
946      * the style/theme).
947      *
948      * @return Returns true if the window is configured to be displayed floating
949      * on top of whatever is behind it.
950      */
isFloating()951     public abstract boolean isFloating();
952 
953     /**
954      * Set the width and height layout parameters of the window.  The default
955      * for both of these is MATCH_PARENT; you can change them to WRAP_CONTENT
956      * or an absolute value to make a window that is not full-screen.
957      *
958      * @param width The desired layout width of the window.
959      * @param height The desired layout height of the window.
960      *
961      * @see ViewGroup.LayoutParams#height
962      * @see ViewGroup.LayoutParams#width
963      */
setLayout(int width, int height)964     public void setLayout(int width, int height) {
965         final WindowManager.LayoutParams attrs = getAttributes();
966         attrs.width = width;
967         attrs.height = height;
968         dispatchWindowAttributesChanged(attrs);
969     }
970 
971     /**
972      * Set the gravity of the window, as per the Gravity constants.  This
973      * controls how the window manager is positioned in the overall window; it
974      * is only useful when using WRAP_CONTENT for the layout width or height.
975      *
976      * @param gravity The desired gravity constant.
977      *
978      * @see Gravity
979      * @see #setLayout
980      */
setGravity(int gravity)981     public void setGravity(int gravity)
982     {
983         final WindowManager.LayoutParams attrs = getAttributes();
984         attrs.gravity = gravity;
985         dispatchWindowAttributesChanged(attrs);
986     }
987 
988     /**
989      * Set the type of the window, as per the WindowManager.LayoutParams
990      * types.
991      *
992      * @param type The new window type (see WindowManager.LayoutParams).
993      */
setType(int type)994     public void setType(int type) {
995         final WindowManager.LayoutParams attrs = getAttributes();
996         attrs.type = type;
997         dispatchWindowAttributesChanged(attrs);
998     }
999 
1000     /**
1001      * Set the format of window, as per the PixelFormat types.  This overrides
1002      * the default format that is selected by the Window based on its
1003      * window decorations.
1004      *
1005      * @param format The new window format (see PixelFormat).  Use
1006      *               PixelFormat.UNKNOWN to allow the Window to select
1007      *               the format.
1008      *
1009      * @see PixelFormat
1010      */
setFormat(int format)1011     public void setFormat(int format) {
1012         final WindowManager.LayoutParams attrs = getAttributes();
1013         if (format != PixelFormat.UNKNOWN) {
1014             attrs.format = format;
1015             mHaveWindowFormat = true;
1016         } else {
1017             attrs.format = mDefaultWindowFormat;
1018             mHaveWindowFormat = false;
1019         }
1020         dispatchWindowAttributesChanged(attrs);
1021     }
1022 
1023     /**
1024      * Specify custom animations to use for the window, as per
1025      * {@link WindowManager.LayoutParams#windowAnimations
1026      * WindowManager.LayoutParams.windowAnimations}.  Providing anything besides
1027      * 0 here will override the animations the window would
1028      * normally retrieve from its theme.
1029      */
setWindowAnimations(@tyleRes int resId)1030     public void setWindowAnimations(@StyleRes int resId) {
1031         final WindowManager.LayoutParams attrs = getAttributes();
1032         attrs.windowAnimations = resId;
1033         dispatchWindowAttributesChanged(attrs);
1034     }
1035 
1036     /**
1037      * Specify an explicit soft input mode to use for the window, as per
1038      * {@link WindowManager.LayoutParams#softInputMode
1039      * WindowManager.LayoutParams.softInputMode}.  Providing anything besides
1040      * "unspecified" here will override the input mode the window would
1041      * normally retrieve from its theme.
1042      */
setSoftInputMode(int mode)1043     public void setSoftInputMode(int mode) {
1044         final WindowManager.LayoutParams attrs = getAttributes();
1045         if (mode != WindowManager.LayoutParams.SOFT_INPUT_STATE_UNSPECIFIED) {
1046             attrs.softInputMode = mode;
1047             mHasSoftInputMode = true;
1048         } else {
1049             mHasSoftInputMode = false;
1050         }
1051         dispatchWindowAttributesChanged(attrs);
1052     }
1053 
1054     /**
1055      * Convenience function to set the flag bits as specified in flags, as
1056      * per {@link #setFlags}.
1057      * @param flags The flag bits to be set.
1058      * @see #setFlags
1059      * @see #clearFlags
1060      */
addFlags(int flags)1061     public void addFlags(int flags) {
1062         setFlags(flags, flags);
1063     }
1064 
1065     /** @hide */
addPrivateFlags(int flags)1066     public void addPrivateFlags(int flags) {
1067         setPrivateFlags(flags, flags);
1068     }
1069 
1070     /**
1071      * Convenience function to clear the flag bits as specified in flags, as
1072      * per {@link #setFlags}.
1073      * @param flags The flag bits to be cleared.
1074      * @see #setFlags
1075      * @see #addFlags
1076      */
clearFlags(int flags)1077     public void clearFlags(int flags) {
1078         setFlags(0, flags);
1079     }
1080 
1081     /**
1082      * Set the flags of the window, as per the
1083      * {@link WindowManager.LayoutParams WindowManager.LayoutParams}
1084      * flags.
1085      *
1086      * <p>Note that some flags must be set before the window decoration is
1087      * created (by the first call to
1088      * {@link #setContentView(View, android.view.ViewGroup.LayoutParams)} or
1089      * {@link #getDecorView()}:
1090      * {@link WindowManager.LayoutParams#FLAG_LAYOUT_IN_SCREEN} and
1091      * {@link WindowManager.LayoutParams#FLAG_LAYOUT_INSET_DECOR}.  These
1092      * will be set for you based on the {@link android.R.attr#windowIsFloating}
1093      * attribute.
1094      *
1095      * @param flags The new window flags (see WindowManager.LayoutParams).
1096      * @param mask Which of the window flag bits to modify.
1097      * @see #addFlags
1098      * @see #clearFlags
1099      */
setFlags(int flags, int mask)1100     public void setFlags(int flags, int mask) {
1101         final WindowManager.LayoutParams attrs = getAttributes();
1102         attrs.flags = (attrs.flags&~mask) | (flags&mask);
1103         mForcedWindowFlags |= mask;
1104         dispatchWindowAttributesChanged(attrs);
1105     }
1106 
setPrivateFlags(int flags, int mask)1107     private void setPrivateFlags(int flags, int mask) {
1108         final WindowManager.LayoutParams attrs = getAttributes();
1109         attrs.privateFlags = (attrs.privateFlags & ~mask) | (flags & mask);
1110         dispatchWindowAttributesChanged(attrs);
1111     }
1112 
1113     /**
1114      * {@hide}
1115      */
setNeedsMenuKey(int value)1116     protected void setNeedsMenuKey(int value) {
1117         final WindowManager.LayoutParams attrs = getAttributes();
1118         attrs.needsMenuKey = value;
1119         dispatchWindowAttributesChanged(attrs);
1120     }
1121 
1122     /**
1123      * {@hide}
1124      */
dispatchWindowAttributesChanged(WindowManager.LayoutParams attrs)1125     protected void dispatchWindowAttributesChanged(WindowManager.LayoutParams attrs) {
1126         if (mCallback != null) {
1127             mCallback.onWindowAttributesChanged(attrs);
1128         }
1129     }
1130 
1131     /**
1132      * Set the amount of dim behind the window when using
1133      * {@link WindowManager.LayoutParams#FLAG_DIM_BEHIND}.  This overrides
1134      * the default dim amount of that is selected by the Window based on
1135      * its theme.
1136      *
1137      * @param amount The new dim amount, from 0 for no dim to 1 for full dim.
1138      */
setDimAmount(float amount)1139     public void setDimAmount(float amount) {
1140         final WindowManager.LayoutParams attrs = getAttributes();
1141         attrs.dimAmount = amount;
1142         mHaveDimAmount = true;
1143         dispatchWindowAttributesChanged(attrs);
1144     }
1145 
1146     /**
1147      * Specify custom window attributes.  <strong>PLEASE NOTE:</strong> the
1148      * layout params you give here should generally be from values previously
1149      * retrieved with {@link #getAttributes()}; you probably do not want to
1150      * blindly create and apply your own, since this will blow away any values
1151      * set by the framework that you are not interested in.
1152      *
1153      * @param a The new window attributes, which will completely override any
1154      *          current values.
1155      */
setAttributes(WindowManager.LayoutParams a)1156     public void setAttributes(WindowManager.LayoutParams a) {
1157         mWindowAttributes.copyFrom(a);
1158         dispatchWindowAttributesChanged(mWindowAttributes);
1159     }
1160 
1161     /**
1162      * Retrieve the current window attributes associated with this panel.
1163      *
1164      * @return WindowManager.LayoutParams Either the existing window
1165      *         attributes object, or a freshly created one if there is none.
1166      */
getAttributes()1167     public final WindowManager.LayoutParams getAttributes() {
1168         return mWindowAttributes;
1169     }
1170 
1171     /**
1172      * Return the window flags that have been explicitly set by the client,
1173      * so will not be modified by {@link #getDecorView}.
1174      */
getForcedWindowFlags()1175     protected final int getForcedWindowFlags() {
1176         return mForcedWindowFlags;
1177     }
1178 
1179     /**
1180      * Has the app specified their own soft input mode?
1181      */
hasSoftInputMode()1182     protected final boolean hasSoftInputMode() {
1183         return mHasSoftInputMode;
1184     }
1185 
1186     /** @hide */
setCloseOnTouchOutside(boolean close)1187     public void setCloseOnTouchOutside(boolean close) {
1188         mCloseOnTouchOutside = close;
1189         mSetCloseOnTouchOutside = true;
1190     }
1191 
1192     /** @hide */
setCloseOnTouchOutsideIfNotSet(boolean close)1193     public void setCloseOnTouchOutsideIfNotSet(boolean close) {
1194         if (!mSetCloseOnTouchOutside) {
1195             mCloseOnTouchOutside = close;
1196             mSetCloseOnTouchOutside = true;
1197         }
1198     }
1199 
1200     /** @hide */
1201     @SystemApi
setDisableWallpaperTouchEvents(boolean disable)1202     public void setDisableWallpaperTouchEvents(boolean disable) {
1203         setPrivateFlags(disable
1204                 ? WindowManager.LayoutParams.PRIVATE_FLAG_DISABLE_WALLPAPER_TOUCH_EVENTS : 0,
1205                 WindowManager.LayoutParams.PRIVATE_FLAG_DISABLE_WALLPAPER_TOUCH_EVENTS);
1206     }
1207 
1208     /** @hide */
alwaysReadCloseOnTouchAttr()1209     public abstract void alwaysReadCloseOnTouchAttr();
1210 
1211     /** @hide */
shouldCloseOnTouch(Context context, MotionEvent event)1212     public boolean shouldCloseOnTouch(Context context, MotionEvent event) {
1213         if (mCloseOnTouchOutside && event.getAction() == MotionEvent.ACTION_DOWN
1214                 && isOutOfBounds(context, event) && peekDecorView() != null) {
1215             return true;
1216         }
1217         return false;
1218     }
1219 
1220     /* Sets the Sustained Performance requirement for the calling window.
1221      * @param enable disables or enables the mode.
1222      */
setSustainedPerformanceMode(boolean enable)1223     public void setSustainedPerformanceMode(boolean enable) {
1224         setPrivateFlags(enable
1225                 ? WindowManager.LayoutParams.PRIVATE_FLAG_SUSTAINED_PERFORMANCE_MODE : 0,
1226                 WindowManager.LayoutParams.PRIVATE_FLAG_SUSTAINED_PERFORMANCE_MODE);
1227     }
1228 
isOutOfBounds(Context context, MotionEvent event)1229     private boolean isOutOfBounds(Context context, MotionEvent event) {
1230         final int x = (int) event.getX();
1231         final int y = (int) event.getY();
1232         final int slop = ViewConfiguration.get(context).getScaledWindowTouchSlop();
1233         final View decorView = getDecorView();
1234         return (x < -slop) || (y < -slop)
1235                 || (x > (decorView.getWidth()+slop))
1236                 || (y > (decorView.getHeight()+slop));
1237     }
1238 
1239     /**
1240      * Enable extended screen features.  This must be called before
1241      * setContentView().  May be called as many times as desired as long as it
1242      * is before setContentView().  If not called, no extended features
1243      * will be available.  You can not turn off a feature once it is requested.
1244      * You canot use other title features with {@link #FEATURE_CUSTOM_TITLE}.
1245      *
1246      * @param featureId The desired features, defined as constants by Window.
1247      * @return The features that are now set.
1248      */
requestFeature(int featureId)1249     public boolean requestFeature(int featureId) {
1250         final int flag = 1<<featureId;
1251         mFeatures |= flag;
1252         mLocalFeatures |= mContainer != null ? (flag&~mContainer.mFeatures) : flag;
1253         return (mFeatures&flag) != 0;
1254     }
1255 
1256     /**
1257      * @hide Used internally to help resolve conflicting features.
1258      */
removeFeature(int featureId)1259     protected void removeFeature(int featureId) {
1260         final int flag = 1<<featureId;
1261         mFeatures &= ~flag;
1262         mLocalFeatures &= ~(mContainer != null ? (flag&~mContainer.mFeatures) : flag);
1263     }
1264 
makeActive()1265     public final void makeActive() {
1266         if (mContainer != null) {
1267             if (mContainer.mActiveChild != null) {
1268                 mContainer.mActiveChild.mIsActive = false;
1269             }
1270             mContainer.mActiveChild = this;
1271         }
1272         mIsActive = true;
1273         onActive();
1274     }
1275 
isActive()1276     public final boolean isActive()
1277     {
1278         return mIsActive;
1279     }
1280 
1281     /**
1282      * Finds a view that was identified by the id attribute from the XML that
1283      * was processed in {@link android.app.Activity#onCreate}.  This will
1284      * implicitly call {@link #getDecorView} for you, with all of the
1285      * associated side-effects.
1286      *
1287      * @return The view if found or null otherwise.
1288      */
1289     @Nullable
findViewById(@dRes int id)1290     public View findViewById(@IdRes int id) {
1291         return getDecorView().findViewById(id);
1292     }
1293 
1294     /**
1295      * Convenience for
1296      * {@link #setContentView(View, android.view.ViewGroup.LayoutParams)}
1297      * to set the screen content from a layout resource.  The resource will be
1298      * inflated, adding all top-level views to the screen.
1299      *
1300      * @param layoutResID Resource ID to be inflated.
1301      * @see #setContentView(View, android.view.ViewGroup.LayoutParams)
1302      */
setContentView(@ayoutRes int layoutResID)1303     public abstract void setContentView(@LayoutRes int layoutResID);
1304 
1305     /**
1306      * Convenience for
1307      * {@link #setContentView(View, android.view.ViewGroup.LayoutParams)}
1308      * set the screen content to an explicit view.  This view is placed
1309      * directly into the screen's view hierarchy.  It can itself be a complex
1310      * view hierarhcy.
1311      *
1312      * @param view The desired content to display.
1313      * @see #setContentView(View, android.view.ViewGroup.LayoutParams)
1314      */
setContentView(View view)1315     public abstract void setContentView(View view);
1316 
1317     /**
1318      * Set the screen content to an explicit view.  This view is placed
1319      * directly into the screen's view hierarchy.  It can itself be a complex
1320      * view hierarchy.
1321      *
1322      * <p>Note that calling this function "locks in" various characteristics
1323      * of the window that can not, from this point forward, be changed: the
1324      * features that have been requested with {@link #requestFeature(int)},
1325      * and certain window flags as described in {@link #setFlags(int, int)}.</p>
1326      *
1327      * <p>If {@link #FEATURE_CONTENT_TRANSITIONS} is set, the window's
1328      * TransitionManager will be used to animate content from the current
1329      * content View to view.</p>
1330      *
1331      * @param view The desired content to display.
1332      * @param params Layout parameters for the view.
1333      * @see #getTransitionManager()
1334      * @see #setTransitionManager(android.transition.TransitionManager)
1335      */
setContentView(View view, ViewGroup.LayoutParams params)1336     public abstract void setContentView(View view, ViewGroup.LayoutParams params);
1337 
1338     /**
1339      * Variation on
1340      * {@link #setContentView(View, android.view.ViewGroup.LayoutParams)}
1341      * to add an additional content view to the screen.  Added after any existing
1342      * ones in the screen -- existing views are NOT removed.
1343      *
1344      * @param view The desired content to display.
1345      * @param params Layout parameters for the view.
1346      */
addContentView(View view, ViewGroup.LayoutParams params)1347     public abstract void addContentView(View view, ViewGroup.LayoutParams params);
1348 
1349     /**
1350      * Remove the view that was used as the screen content.
1351      *
1352      * @hide
1353      */
clearContentView()1354     public abstract void clearContentView();
1355 
1356     /**
1357      * Return the view in this Window that currently has focus, or null if
1358      * there are none.  Note that this does not look in any containing
1359      * Window.
1360      *
1361      * @return View The current View with focus or null.
1362      */
1363     @Nullable
getCurrentFocus()1364     public abstract View getCurrentFocus();
1365 
1366     /**
1367      * Quick access to the {@link LayoutInflater} instance that this Window
1368      * retrieved from its Context.
1369      *
1370      * @return LayoutInflater The shared LayoutInflater.
1371      */
1372     @NonNull
getLayoutInflater()1373     public abstract LayoutInflater getLayoutInflater();
1374 
setTitle(CharSequence title)1375     public abstract void setTitle(CharSequence title);
1376 
1377     @Deprecated
setTitleColor(@olorInt int textColor)1378     public abstract void setTitleColor(@ColorInt int textColor);
1379 
openPanel(int featureId, KeyEvent event)1380     public abstract void openPanel(int featureId, KeyEvent event);
1381 
closePanel(int featureId)1382     public abstract void closePanel(int featureId);
1383 
togglePanel(int featureId, KeyEvent event)1384     public abstract void togglePanel(int featureId, KeyEvent event);
1385 
invalidatePanelMenu(int featureId)1386     public abstract void invalidatePanelMenu(int featureId);
1387 
performPanelShortcut(int featureId, int keyCode, KeyEvent event, int flags)1388     public abstract boolean performPanelShortcut(int featureId,
1389                                                  int keyCode,
1390                                                  KeyEvent event,
1391                                                  int flags);
performPanelIdentifierAction(int featureId, int id, int flags)1392     public abstract boolean performPanelIdentifierAction(int featureId,
1393                                                  int id,
1394                                                  int flags);
1395 
closeAllPanels()1396     public abstract void closeAllPanels();
1397 
performContextMenuIdentifierAction(int id, int flags)1398     public abstract boolean performContextMenuIdentifierAction(int id, int flags);
1399 
1400     /**
1401      * Should be called when the configuration is changed.
1402      *
1403      * @param newConfig The new configuration.
1404      */
onConfigurationChanged(Configuration newConfig)1405     public abstract void onConfigurationChanged(Configuration newConfig);
1406 
1407     /**
1408      * Sets the window elevation.
1409      * <p>
1410      * Changes to this property take effect immediately and will cause the
1411      * window surface to be recreated. This is an expensive operation and as a
1412      * result, this property should not be animated.
1413      *
1414      * @param elevation The window elevation.
1415      * @see View#setElevation(float)
1416      * @see android.R.styleable#Window_windowElevation
1417      */
setElevation(float elevation)1418     public void setElevation(float elevation) {}
1419 
1420     /**
1421      * Gets the window elevation.
1422      *
1423      * @hide
1424      */
getElevation()1425     public float getElevation() {
1426         return 0.0f;
1427     }
1428 
1429     /**
1430      * Sets whether window content should be clipped to the outline of the
1431      * window background.
1432      *
1433      * @param clipToOutline Whether window content should be clipped to the
1434      *                      outline of the window background.
1435      * @see View#setClipToOutline(boolean)
1436      * @see android.R.styleable#Window_windowClipToOutline
1437      */
setClipToOutline(boolean clipToOutline)1438     public void setClipToOutline(boolean clipToOutline) {}
1439 
1440     /**
1441      * Change the background of this window to a Drawable resource. Setting the
1442      * background to null will make the window be opaque. To make the window
1443      * transparent, you can use an empty drawable (for instance a ColorDrawable
1444      * with the color 0 or the system drawable android:drawable/empty.)
1445      *
1446      * @param resId The resource identifier of a drawable resource which will
1447      *              be installed as the new background.
1448      */
setBackgroundDrawableResource(@rawableRes int resId)1449     public void setBackgroundDrawableResource(@DrawableRes int resId) {
1450         setBackgroundDrawable(mContext.getDrawable(resId));
1451     }
1452 
1453     /**
1454      * Change the background of this window to a custom Drawable. Setting the
1455      * background to null will make the window be opaque. To make the window
1456      * transparent, you can use an empty drawable (for instance a ColorDrawable
1457      * with the color 0 or the system drawable android:drawable/empty.)
1458      *
1459      * @param drawable The new Drawable to use for this window's background.
1460      */
setBackgroundDrawable(Drawable drawable)1461     public abstract void setBackgroundDrawable(Drawable drawable);
1462 
1463     /**
1464      * Set the value for a drawable feature of this window, from a resource
1465      * identifier.  You must have called requestFeature(featureId) before
1466      * calling this function.
1467      *
1468      * @see android.content.res.Resources#getDrawable(int)
1469      *
1470      * @param featureId The desired drawable feature to change, defined as a
1471      * constant by Window.
1472      * @param resId Resource identifier of the desired image.
1473      */
setFeatureDrawableResource(int featureId, @DrawableRes int resId)1474     public abstract void setFeatureDrawableResource(int featureId, @DrawableRes int resId);
1475 
1476     /**
1477      * Set the value for a drawable feature of this window, from a URI. You
1478      * must have called requestFeature(featureId) before calling this
1479      * function.
1480      *
1481      * <p>The only URI currently supported is "content:", specifying an image
1482      * in a content provider.
1483      *
1484      * @see android.widget.ImageView#setImageURI
1485      *
1486      * @param featureId The desired drawable feature to change. Features are
1487      * constants defined by Window.
1488      * @param uri The desired URI.
1489      */
setFeatureDrawableUri(int featureId, Uri uri)1490     public abstract void setFeatureDrawableUri(int featureId, Uri uri);
1491 
1492     /**
1493      * Set an explicit Drawable value for feature of this window. You must
1494      * have called requestFeature(featureId) before calling this function.
1495      *
1496      * @param featureId The desired drawable feature to change. Features are
1497      *                  constants defined by Window.
1498      * @param drawable A Drawable object to display.
1499      */
setFeatureDrawable(int featureId, Drawable drawable)1500     public abstract void setFeatureDrawable(int featureId, Drawable drawable);
1501 
1502     /**
1503      * Set a custom alpha value for the given drawable feature, controlling how
1504      * much the background is visible through it.
1505      *
1506      * @param featureId The desired drawable feature to change. Features are
1507      *                  constants defined by Window.
1508      * @param alpha The alpha amount, 0 is completely transparent and 255 is
1509      *              completely opaque.
1510      */
setFeatureDrawableAlpha(int featureId, int alpha)1511     public abstract void setFeatureDrawableAlpha(int featureId, int alpha);
1512 
1513     /**
1514      * Set the integer value for a feature. The range of the value depends on
1515      * the feature being set. For {@link #FEATURE_PROGRESS}, it should go from
1516      * 0 to 10000. At 10000 the progress is complete and the indicator hidden.
1517      *
1518      * @param featureId The desired feature to change. Features are constants
1519      *                  defined by Window.
1520      * @param value The value for the feature. The interpretation of this
1521      *              value is feature-specific.
1522      */
setFeatureInt(int featureId, int value)1523     public abstract void setFeatureInt(int featureId, int value);
1524 
1525     /**
1526      * Request that key events come to this activity. Use this if your
1527      * activity has no views with focus, but the activity still wants
1528      * a chance to process key events.
1529      */
takeKeyEvents(boolean get)1530     public abstract void takeKeyEvents(boolean get);
1531 
1532     /**
1533      * Used by custom windows, such as Dialog, to pass the key press event
1534      * further down the view hierarchy. Application developers should
1535      * not need to implement or call this.
1536      *
1537      */
superDispatchKeyEvent(KeyEvent event)1538     public abstract boolean superDispatchKeyEvent(KeyEvent event);
1539 
1540     /**
1541      * Used by custom windows, such as Dialog, to pass the key shortcut press event
1542      * further down the view hierarchy. Application developers should
1543      * not need to implement or call this.
1544      *
1545      */
superDispatchKeyShortcutEvent(KeyEvent event)1546     public abstract boolean superDispatchKeyShortcutEvent(KeyEvent event);
1547 
1548     /**
1549      * Used by custom windows, such as Dialog, to pass the touch screen event
1550      * further down the view hierarchy. Application developers should
1551      * not need to implement or call this.
1552      *
1553      */
superDispatchTouchEvent(MotionEvent event)1554     public abstract boolean superDispatchTouchEvent(MotionEvent event);
1555 
1556     /**
1557      * Used by custom windows, such as Dialog, to pass the trackball event
1558      * further down the view hierarchy. Application developers should
1559      * not need to implement or call this.
1560      *
1561      */
superDispatchTrackballEvent(MotionEvent event)1562     public abstract boolean superDispatchTrackballEvent(MotionEvent event);
1563 
1564     /**
1565      * Used by custom windows, such as Dialog, to pass the generic motion event
1566      * further down the view hierarchy. Application developers should
1567      * not need to implement or call this.
1568      *
1569      */
superDispatchGenericMotionEvent(MotionEvent event)1570     public abstract boolean superDispatchGenericMotionEvent(MotionEvent event);
1571 
1572     /**
1573      * Retrieve the top-level window decor view (containing the standard
1574      * window frame/decorations and the client's content inside of that), which
1575      * can be added as a window to the window manager.
1576      *
1577      * <p><em>Note that calling this function for the first time "locks in"
1578      * various window characteristics as described in
1579      * {@link #setContentView(View, android.view.ViewGroup.LayoutParams)}.</em></p>
1580      *
1581      * @return Returns the top-level window decor view.
1582      */
getDecorView()1583     public abstract View getDecorView();
1584 
1585     /**
1586      * Retrieve the current decor view, but only if it has already been created;
1587      * otherwise returns null.
1588      *
1589      * @return Returns the top-level window decor or null.
1590      * @see #getDecorView
1591      */
peekDecorView()1592     public abstract View peekDecorView();
1593 
saveHierarchyState()1594     public abstract Bundle saveHierarchyState();
1595 
restoreHierarchyState(Bundle savedInstanceState)1596     public abstract void restoreHierarchyState(Bundle savedInstanceState);
1597 
onActive()1598     protected abstract void onActive();
1599 
1600     /**
1601      * Return the feature bits that are enabled.  This is the set of features
1602      * that were given to requestFeature(), and are being handled by this
1603      * Window itself or its container.  That is, it is the set of
1604      * requested features that you can actually use.
1605      *
1606      * <p>To do: add a public version of this API that allows you to check for
1607      * features by their feature ID.
1608      *
1609      * @return int The feature bits.
1610      */
getFeatures()1611     protected final int getFeatures()
1612     {
1613         return mFeatures;
1614     }
1615 
1616     /**
1617      * Return the feature bits set by default on a window.
1618      * @param context The context used to access resources
1619      */
getDefaultFeatures(Context context)1620     public static int getDefaultFeatures(Context context) {
1621         int features = 0;
1622 
1623         final Resources res = context.getResources();
1624         if (res.getBoolean(com.android.internal.R.bool.config_defaultWindowFeatureOptionsPanel)) {
1625             features |= 1 << FEATURE_OPTIONS_PANEL;
1626         }
1627 
1628         if (res.getBoolean(com.android.internal.R.bool.config_defaultWindowFeatureContextMenu)) {
1629             features |= 1 << FEATURE_CONTEXT_MENU;
1630         }
1631 
1632         return features;
1633     }
1634 
1635     /**
1636      * Query for the availability of a certain feature.
1637      *
1638      * @param feature The feature ID to check
1639      * @return true if the feature is enabled, false otherwise.
1640      */
hasFeature(int feature)1641     public boolean hasFeature(int feature) {
1642         return (getFeatures() & (1 << feature)) != 0;
1643     }
1644 
1645     /**
1646      * Return the feature bits that are being implemented by this Window.
1647      * This is the set of features that were given to requestFeature(), and are
1648      * being handled by only this Window itself, not by its containers.
1649      *
1650      * @return int The feature bits.
1651      */
getLocalFeatures()1652     protected final int getLocalFeatures()
1653     {
1654         return mLocalFeatures;
1655     }
1656 
1657     /**
1658      * Set the default format of window, as per the PixelFormat types.  This
1659      * is the format that will be used unless the client specifies in explicit
1660      * format with setFormat();
1661      *
1662      * @param format The new window format (see PixelFormat).
1663      *
1664      * @see #setFormat
1665      * @see PixelFormat
1666      */
setDefaultWindowFormat(int format)1667     protected void setDefaultWindowFormat(int format) {
1668         mDefaultWindowFormat = format;
1669         if (!mHaveWindowFormat) {
1670             final WindowManager.LayoutParams attrs = getAttributes();
1671             attrs.format = format;
1672             dispatchWindowAttributesChanged(attrs);
1673         }
1674     }
1675 
1676     /** @hide */
haveDimAmount()1677     protected boolean haveDimAmount() {
1678         return mHaveDimAmount;
1679     }
1680 
setChildDrawable(int featureId, Drawable drawable)1681     public abstract void setChildDrawable(int featureId, Drawable drawable);
1682 
setChildInt(int featureId, int value)1683     public abstract void setChildInt(int featureId, int value);
1684 
1685     /**
1686      * Is a keypress one of the defined shortcut keys for this window.
1687      * @param keyCode the key code from {@link android.view.KeyEvent} to check.
1688      * @param event the {@link android.view.KeyEvent} to use to help check.
1689      */
isShortcutKey(int keyCode, KeyEvent event)1690     public abstract boolean isShortcutKey(int keyCode, KeyEvent event);
1691 
1692     /**
1693      * @see android.app.Activity#setVolumeControlStream(int)
1694      */
setVolumeControlStream(int streamType)1695     public abstract void setVolumeControlStream(int streamType);
1696 
1697     /**
1698      * @see android.app.Activity#getVolumeControlStream()
1699      */
getVolumeControlStream()1700     public abstract int getVolumeControlStream();
1701 
1702     /**
1703      * Sets a {@link MediaController} to send media keys and volume changes to.
1704      * If set, this should be preferred for all media keys and volume requests
1705      * sent to this window.
1706      *
1707      * @param controller The controller for the session which should receive
1708      *            media keys and volume changes.
1709      * @see android.app.Activity#setMediaController(android.media.session.MediaController)
1710      */
setMediaController(MediaController controller)1711     public void setMediaController(MediaController controller) {
1712     }
1713 
1714     /**
1715      * Gets the {@link MediaController} that was previously set.
1716      *
1717      * @return The controller which should receive events.
1718      * @see #setMediaController(android.media.session.MediaController)
1719      * @see android.app.Activity#getMediaController()
1720      */
getMediaController()1721     public MediaController getMediaController() {
1722         return null;
1723     }
1724 
1725     /**
1726      * Set extra options that will influence the UI for this window.
1727      * @param uiOptions Flags specifying extra options for this window.
1728      */
setUiOptions(int uiOptions)1729     public void setUiOptions(int uiOptions) { }
1730 
1731     /**
1732      * Set extra options that will influence the UI for this window.
1733      * Only the bits filtered by mask will be modified.
1734      * @param uiOptions Flags specifying extra options for this window.
1735      * @param mask Flags specifying which options should be modified. Others will remain unchanged.
1736      */
setUiOptions(int uiOptions, int mask)1737     public void setUiOptions(int uiOptions, int mask) { }
1738 
1739     /**
1740      * Set the primary icon for this window.
1741      *
1742      * @param resId resource ID of a drawable to set
1743      */
setIcon(@rawableRes int resId)1744     public void setIcon(@DrawableRes int resId) { }
1745 
1746     /**
1747      * Set the default icon for this window.
1748      * This will be overridden by any other icon set operation which could come from the
1749      * theme or another explicit set.
1750      *
1751      * @hide
1752      */
setDefaultIcon(@rawableRes int resId)1753     public void setDefaultIcon(@DrawableRes int resId) { }
1754 
1755     /**
1756      * Set the logo for this window. A logo is often shown in place of an
1757      * {@link #setIcon(int) icon} but is generally wider and communicates window title information
1758      * as well.
1759      *
1760      * @param resId resource ID of a drawable to set
1761      */
setLogo(@rawableRes int resId)1762     public void setLogo(@DrawableRes int resId) { }
1763 
1764     /**
1765      * Set the default logo for this window.
1766      * This will be overridden by any other logo set operation which could come from the
1767      * theme or another explicit set.
1768      *
1769      * @hide
1770      */
setDefaultLogo(@rawableRes int resId)1771     public void setDefaultLogo(@DrawableRes int resId) { }
1772 
1773     /**
1774      * Set focus locally. The window should have the
1775      * {@link WindowManager.LayoutParams#FLAG_LOCAL_FOCUS_MODE} flag set already.
1776      * @param hasFocus Whether this window has focus or not.
1777      * @param inTouchMode Whether this window is in touch mode or not.
1778      */
setLocalFocus(boolean hasFocus, boolean inTouchMode)1779     public void setLocalFocus(boolean hasFocus, boolean inTouchMode) { }
1780 
1781     /**
1782      * Inject an event to window locally.
1783      * @param event A key or touch event to inject to this window.
1784      */
injectInputEvent(InputEvent event)1785     public void injectInputEvent(InputEvent event) { }
1786 
1787     /**
1788      * Retrieve the {@link TransitionManager} responsible for  for default transitions
1789      * in this window. Requires {@link #FEATURE_CONTENT_TRANSITIONS}.
1790      *
1791      * <p>This method will return non-null after content has been initialized (e.g. by using
1792      * {@link #setContentView}) if {@link #FEATURE_CONTENT_TRANSITIONS} has been granted.</p>
1793      *
1794      * @return This window's content TransitionManager or null if none is set.
1795      * @attr ref android.R.styleable#Window_windowContentTransitionManager
1796      */
getTransitionManager()1797     public TransitionManager getTransitionManager() {
1798         return null;
1799     }
1800 
1801     /**
1802      * Set the {@link TransitionManager} to use for default transitions in this window.
1803      * Requires {@link #FEATURE_CONTENT_TRANSITIONS}.
1804      *
1805      * @param tm The TransitionManager to use for scene changes.
1806      * @attr ref android.R.styleable#Window_windowContentTransitionManager
1807      */
setTransitionManager(TransitionManager tm)1808     public void setTransitionManager(TransitionManager tm) {
1809         throw new UnsupportedOperationException();
1810     }
1811 
1812     /**
1813      * Retrieve the {@link Scene} representing this window's current content.
1814      * Requires {@link #FEATURE_CONTENT_TRANSITIONS}.
1815      *
1816      * <p>This method will return null if the current content is not represented by a Scene.</p>
1817      *
1818      * @return Current Scene being shown or null
1819      */
getContentScene()1820     public Scene getContentScene() {
1821         return null;
1822     }
1823 
1824     /**
1825      * Sets the Transition that will be used to move Views into the initial scene. The entering
1826      * Views will be those that are regular Views or ViewGroups that have
1827      * {@link ViewGroup#isTransitionGroup} return true. Typical Transitions will extend
1828      * {@link android.transition.Visibility} as entering is governed by changing visibility from
1829      * {@link View#INVISIBLE} to {@link View#VISIBLE}. If <code>transition</code> is null,
1830      * entering Views will remain unaffected.
1831      *
1832      * @param transition The Transition to use to move Views into the initial Scene.
1833      * @attr ref android.R.styleable#Window_windowEnterTransition
1834      */
setEnterTransition(Transition transition)1835     public void setEnterTransition(Transition transition) {}
1836 
1837     /**
1838      * Sets the Transition that will be used to move Views out of the scene when the Window is
1839      * preparing to close, for example after a call to
1840      * {@link android.app.Activity#finishAfterTransition()}. The exiting
1841      * Views will be those that are regular Views or ViewGroups that have
1842      * {@link ViewGroup#isTransitionGroup} return true. Typical Transitions will extend
1843      * {@link android.transition.Visibility} as entering is governed by changing visibility from
1844      * {@link View#VISIBLE} to {@link View#INVISIBLE}. If <code>transition</code> is null,
1845      * entering Views will remain unaffected. If nothing is set, the default will be to
1846      * use the same value as set in {@link #setEnterTransition(android.transition.Transition)}.
1847      *
1848      * @param transition The Transition to use to move Views out of the Scene when the Window
1849      *                   is preparing to close.
1850      * @attr ref android.R.styleable#Window_windowReturnTransition
1851      */
setReturnTransition(Transition transition)1852     public void setReturnTransition(Transition transition) {}
1853 
1854     /**
1855      * Sets the Transition that will be used to move Views out of the scene when starting a
1856      * new Activity. The exiting Views will be those that are regular Views or ViewGroups that
1857      * have {@link ViewGroup#isTransitionGroup} return true. Typical Transitions will extend
1858      * {@link android.transition.Visibility} as exiting is governed by changing visibility
1859      * from {@link View#VISIBLE} to {@link View#INVISIBLE}. If transition is null, the views will
1860      * remain unaffected. Requires {@link #FEATURE_ACTIVITY_TRANSITIONS}.
1861      *
1862      * @param transition The Transition to use to move Views out of the scene when calling a
1863      *                   new Activity.
1864      * @attr ref android.R.styleable#Window_windowExitTransition
1865      */
setExitTransition(Transition transition)1866     public void setExitTransition(Transition transition) {}
1867 
1868     /**
1869      * Sets the Transition that will be used to move Views in to the scene when returning from
1870      * a previously-started Activity. The entering Views will be those that are regular Views
1871      * or ViewGroups that have {@link ViewGroup#isTransitionGroup} return true. Typical Transitions
1872      * will extend {@link android.transition.Visibility} as exiting is governed by changing
1873      * visibility from {@link View#VISIBLE} to {@link View#INVISIBLE}. If transition is null,
1874      * the views will remain unaffected. If nothing is set, the default will be to use the same
1875      * transition as {@link #setExitTransition(android.transition.Transition)}.
1876      * Requires {@link #FEATURE_ACTIVITY_TRANSITIONS}.
1877      *
1878      * @param transition The Transition to use to move Views into the scene when reentering from a
1879      *                   previously-started Activity.
1880      * @attr ref android.R.styleable#Window_windowReenterTransition
1881      */
setReenterTransition(Transition transition)1882     public void setReenterTransition(Transition transition) {}
1883 
1884     /**
1885      * Returns the transition used to move Views into the initial scene. The entering
1886      * Views will be those that are regular Views or ViewGroups that have
1887      * {@link ViewGroup#isTransitionGroup} return true. Typical Transitions will extend
1888      * {@link android.transition.Visibility} as entering is governed by changing visibility from
1889      * {@link View#INVISIBLE} to {@link View#VISIBLE}. If <code>transition</code> is null,
1890      * entering Views will remain unaffected.  Requires {@link #FEATURE_ACTIVITY_TRANSITIONS}.
1891      *
1892      * @return the Transition to use to move Views into the initial Scene.
1893      * @attr ref android.R.styleable#Window_windowEnterTransition
1894      */
getEnterTransition()1895     public Transition getEnterTransition() { return null; }
1896 
1897     /**
1898      * Returns he Transition that will be used to move Views out of the scene when the Window is
1899      * preparing to close, for example after a call to
1900      * {@link android.app.Activity#finishAfterTransition()}. The exiting
1901      * Views will be those that are regular Views or ViewGroups that have
1902      * {@link ViewGroup#isTransitionGroup} return true. Typical Transitions will extend
1903      * {@link android.transition.Visibility} as entering is governed by changing visibility from
1904      * {@link View#VISIBLE} to {@link View#INVISIBLE}.
1905      *
1906      * @return The Transition to use to move Views out of the Scene when the Window
1907      *         is preparing to close.
1908      * @attr ref android.R.styleable#Window_windowReturnTransition
1909      */
getReturnTransition()1910     public Transition getReturnTransition() { return null; }
1911 
1912     /**
1913      * Returns the Transition that will be used to move Views out of the scene when starting a
1914      * new Activity. The exiting Views will be those that are regular Views or ViewGroups that
1915      * have {@link ViewGroup#isTransitionGroup} return true. Typical Transitions will extend
1916      * {@link android.transition.Visibility} as exiting is governed by changing visibility
1917      * from {@link View#VISIBLE} to {@link View#INVISIBLE}. If transition is null, the views will
1918      * remain unaffected. Requires {@link #FEATURE_ACTIVITY_TRANSITIONS}.
1919      *
1920      * @return the Transition to use to move Views out of the scene when calling a
1921      * new Activity.
1922      * @attr ref android.R.styleable#Window_windowExitTransition
1923      */
getExitTransition()1924     public Transition getExitTransition() { return null; }
1925 
1926     /**
1927      * Returns the Transition that will be used to move Views in to the scene when returning from
1928      * a previously-started Activity. The entering Views will be those that are regular Views
1929      * or ViewGroups that have {@link ViewGroup#isTransitionGroup} return true. Typical Transitions
1930      * will extend {@link android.transition.Visibility} as exiting is governed by changing
1931      * visibility from {@link View#VISIBLE} to {@link View#INVISIBLE}.
1932      * Requires {@link #FEATURE_ACTIVITY_TRANSITIONS}.
1933      *
1934      * @return The Transition to use to move Views into the scene when reentering from a
1935      *         previously-started Activity.
1936      * @attr ref android.R.styleable#Window_windowReenterTransition
1937      */
getReenterTransition()1938     public Transition getReenterTransition() { return null; }
1939 
1940     /**
1941      * Sets the Transition that will be used for shared elements transferred into the content
1942      * Scene. Typical Transitions will affect size and location, such as
1943      * {@link android.transition.ChangeBounds}. A null
1944      * value will cause transferred shared elements to blink to the final position.
1945      * Requires {@link #FEATURE_ACTIVITY_TRANSITIONS}.
1946      *
1947      * @param transition The Transition to use for shared elements transferred into the content
1948      *                   Scene.
1949      * @attr ref android.R.styleable#Window_windowSharedElementEnterTransition
1950      */
setSharedElementEnterTransition(Transition transition)1951     public void setSharedElementEnterTransition(Transition transition) {}
1952 
1953     /**
1954      * Sets the Transition that will be used for shared elements transferred back to a
1955      * calling Activity. Typical Transitions will affect size and location, such as
1956      * {@link android.transition.ChangeBounds}. A null
1957      * value will cause transferred shared elements to blink to the final position.
1958      * If no value is set, the default will be to use the same value as
1959      * {@link #setSharedElementEnterTransition(android.transition.Transition)}.
1960      * Requires {@link #FEATURE_ACTIVITY_TRANSITIONS}.
1961      *
1962      * @param transition The Transition to use for shared elements transferred out of the content
1963      *                   Scene.
1964      * @attr ref android.R.styleable#Window_windowSharedElementReturnTransition
1965      */
setSharedElementReturnTransition(Transition transition)1966     public void setSharedElementReturnTransition(Transition transition) {}
1967 
1968     /**
1969      * Returns the Transition that will be used for shared elements transferred into the content
1970      * Scene. Requires {@link #FEATURE_ACTIVITY_TRANSITIONS}.
1971      *
1972      * @return Transition to use for sharend elements transferred into the content Scene.
1973      * @attr ref android.R.styleable#Window_windowSharedElementEnterTransition
1974      */
getSharedElementEnterTransition()1975     public Transition getSharedElementEnterTransition() { return null; }
1976 
1977     /**
1978      * Returns the Transition that will be used for shared elements transferred back to a
1979      * calling Activity. Requires {@link #FEATURE_ACTIVITY_TRANSITIONS}.
1980      *
1981      * @return Transition to use for sharend elements transferred into the content Scene.
1982      * @attr ref android.R.styleable#Window_windowSharedElementReturnTransition
1983      */
getSharedElementReturnTransition()1984     public Transition getSharedElementReturnTransition() { return null; }
1985 
1986     /**
1987      * Sets the Transition that will be used for shared elements after starting a new Activity
1988      * before the shared elements are transferred to the called Activity. If the shared elements
1989      * must animate during the exit transition, this Transition should be used. Upon completion,
1990      * the shared elements may be transferred to the started Activity.
1991      * Requires {@link #FEATURE_ACTIVITY_TRANSITIONS}.
1992      *
1993      * @param transition The Transition to use for shared elements in the launching Window
1994      *                   prior to transferring to the launched Activity's Window.
1995      * @attr ref android.R.styleable#Window_windowSharedElementExitTransition
1996      */
setSharedElementExitTransition(Transition transition)1997     public void setSharedElementExitTransition(Transition transition) {}
1998 
1999     /**
2000      * Sets the Transition that will be used for shared elements reentering from a started
2001      * Activity after it has returned the shared element to it start location. If no value
2002      * is set, this will default to
2003      * {@link #setSharedElementExitTransition(android.transition.Transition)}.
2004      * Requires {@link #FEATURE_ACTIVITY_TRANSITIONS}.
2005      *
2006      * @param transition The Transition to use for shared elements in the launching Window
2007      *                   after the shared element has returned to the Window.
2008      * @attr ref android.R.styleable#Window_windowSharedElementReenterTransition
2009      */
setSharedElementReenterTransition(Transition transition)2010     public void setSharedElementReenterTransition(Transition transition) {}
2011 
2012     /**
2013      * Returns the Transition to use for shared elements in the launching Window prior
2014      * to transferring to the launched Activity's Window.
2015      * Requires {@link #FEATURE_ACTIVITY_TRANSITIONS}.
2016      *
2017      * @return the Transition to use for shared elements in the launching Window prior
2018      * to transferring to the launched Activity's Window.
2019      * @attr ref android.R.styleable#Window_windowSharedElementExitTransition
2020      */
getSharedElementExitTransition()2021     public Transition getSharedElementExitTransition() { return null; }
2022 
2023     /**
2024      * Returns the Transition that will be used for shared elements reentering from a started
2025      * Activity after it has returned the shared element to it start location.
2026      * Requires {@link #FEATURE_ACTIVITY_TRANSITIONS}.
2027      *
2028      * @return the Transition that will be used for shared elements reentering from a started
2029      * Activity after it has returned the shared element to it start location.
2030      * @attr ref android.R.styleable#Window_windowSharedElementReenterTransition
2031      */
getSharedElementReenterTransition()2032     public Transition getSharedElementReenterTransition() { return null; }
2033 
2034     /**
2035      * Controls how the transition set in
2036      * {@link #setEnterTransition(android.transition.Transition)} overlaps with the exit
2037      * transition of the calling Activity. When true, the transition will start as soon as possible.
2038      * When false, the transition will wait until the remote exiting transition completes before
2039      * starting.
2040      *
2041      * @param allow true to start the enter transition when possible or false to
2042      *              wait until the exiting transition completes.
2043      * @attr ref android.R.styleable#Window_windowAllowEnterTransitionOverlap
2044      */
setAllowEnterTransitionOverlap(boolean allow)2045     public void setAllowEnterTransitionOverlap(boolean allow) {}
2046 
2047     /**
2048      * Returns how the transition set in
2049      * {@link #setEnterTransition(android.transition.Transition)} overlaps with the exit
2050      * transition of the calling Activity. When true, the transition will start as soon as possible.
2051      * When false, the transition will wait until the remote exiting transition completes before
2052      * starting.
2053      *
2054      * @return true when the enter transition should start as soon as possible or false to
2055      * when it should wait until the exiting transition completes.
2056      * @attr ref android.R.styleable#Window_windowAllowEnterTransitionOverlap
2057      */
getAllowEnterTransitionOverlap()2058     public boolean getAllowEnterTransitionOverlap() { return true; }
2059 
2060     /**
2061      * Controls how the transition set in
2062      * {@link #setExitTransition(android.transition.Transition)} overlaps with the exit
2063      * transition of the called Activity when reentering after if finishes. When true,
2064      * the transition will start as soon as possible. When false, the transition will wait
2065      * until the called Activity's exiting transition completes before starting.
2066      *
2067      * @param allow true to start the transition when possible or false to wait until the
2068      *              called Activity's exiting transition completes.
2069      * @attr ref android.R.styleable#Window_windowAllowReturnTransitionOverlap
2070      */
setAllowReturnTransitionOverlap(boolean allow)2071     public void setAllowReturnTransitionOverlap(boolean allow) {}
2072 
2073     /**
2074      * Returns how the transition set in
2075      * {@link #setExitTransition(android.transition.Transition)} overlaps with the exit
2076      * transition of the called Activity when reentering after if finishes. When true,
2077      * the transition will start as soon as possible. When false, the transition will wait
2078      * until the called Activity's exiting transition completes before starting.
2079      *
2080      * @return true when the transition should start when possible or false when it should wait
2081      * until the called Activity's exiting transition completes.
2082      * @attr ref android.R.styleable#Window_windowAllowReturnTransitionOverlap
2083      */
getAllowReturnTransitionOverlap()2084     public boolean getAllowReturnTransitionOverlap() { return true; }
2085 
2086     /**
2087      * Returns the duration, in milliseconds, of the window background fade
2088      * when transitioning into or away from an Activity when called with an Activity Transition.
2089      * <p>When executing the enter transition, the background starts transparent
2090      * and fades in. This requires {@link #FEATURE_ACTIVITY_TRANSITIONS}. The default is
2091      * 300 milliseconds.</p>
2092      *
2093      * @return The duration of the window background fade to opaque during enter transition.
2094      * @see #getEnterTransition()
2095      * @attr ref android.R.styleable#Window_windowTransitionBackgroundFadeDuration
2096      */
getTransitionBackgroundFadeDuration()2097     public long getTransitionBackgroundFadeDuration() { return 0; }
2098 
2099     /**
2100      * Sets the duration, in milliseconds, of the window background fade
2101      * when transitioning into or away from an Activity when called with an Activity Transition.
2102      * <p>When executing the enter transition, the background starts transparent
2103      * and fades in. This requires {@link #FEATURE_ACTIVITY_TRANSITIONS}. The default is
2104      * 300 milliseconds.</p>
2105      *
2106      * @param fadeDurationMillis The duration of the window background fade to or from opaque
2107      *                           during enter transition.
2108      * @see #setEnterTransition(android.transition.Transition)
2109      * @attr ref android.R.styleable#Window_windowTransitionBackgroundFadeDuration
2110      */
setTransitionBackgroundFadeDuration(long fadeDurationMillis)2111     public void setTransitionBackgroundFadeDuration(long fadeDurationMillis) { }
2112 
2113     /**
2114      * Returns <code>true</code> when shared elements should use an Overlay during
2115      * shared element transitions or <code>false</code> when they should animate as
2116      * part of the normal View hierarchy. The default value is true.
2117      *
2118      * @return <code>true</code> when shared elements should use an Overlay during
2119      * shared element transitions or <code>false</code> when they should animate as
2120      * part of the normal View hierarchy.
2121      * @attr ref android.R.styleable#Window_windowSharedElementsUseOverlay
2122      */
getSharedElementsUseOverlay()2123     public boolean getSharedElementsUseOverlay() { return true; }
2124 
2125     /**
2126      * Sets whether or not shared elements should use an Overlay during shared element transitions.
2127      * The default value is true.
2128      *
2129      * @param sharedElementsUseOverlay <code>true</code> indicates that shared elements should
2130      *                                 be transitioned with an Overlay or <code>false</code>
2131      *                                 to transition within the normal View hierarchy.
2132      * @attr ref android.R.styleable#Window_windowSharedElementsUseOverlay
2133      */
setSharedElementsUseOverlay(boolean sharedElementsUseOverlay)2134     public void setSharedElementsUseOverlay(boolean sharedElementsUseOverlay) { }
2135 
2136     /**
2137      * @return the color of the status bar.
2138      */
2139     @ColorInt
getStatusBarColor()2140     public abstract int getStatusBarColor();
2141 
2142     /**
2143      * Sets the color of the status bar to {@code color}.
2144      *
2145      * For this to take effect,
2146      * the window must be drawing the system bar backgrounds with
2147      * {@link android.view.WindowManager.LayoutParams#FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS} and
2148      * {@link android.view.WindowManager.LayoutParams#FLAG_TRANSLUCENT_STATUS} must not be set.
2149      *
2150      * If {@code color} is not opaque, consider setting
2151      * {@link android.view.View#SYSTEM_UI_FLAG_LAYOUT_STABLE} and
2152      * {@link android.view.View#SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN}.
2153      * <p>
2154      * The transitionName for the view background will be "android:status:background".
2155      * </p>
2156      */
setStatusBarColor(@olorInt int color)2157     public abstract void setStatusBarColor(@ColorInt int color);
2158 
2159     /**
2160      * @return the color of the navigation bar.
2161      */
2162     @ColorInt
getNavigationBarColor()2163     public abstract int getNavigationBarColor();
2164 
2165     /**
2166      * Sets the color of the navigation bar to {@param color}.
2167      *
2168      * For this to take effect,
2169      * the window must be drawing the system bar backgrounds with
2170      * {@link android.view.WindowManager.LayoutParams#FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS} and
2171      * {@link android.view.WindowManager.LayoutParams#FLAG_TRANSLUCENT_NAVIGATION} must not be set.
2172      *
2173      * If {@param color} is not opaque, consider setting
2174      * {@link android.view.View#SYSTEM_UI_FLAG_LAYOUT_STABLE} and
2175      * {@link android.view.View#SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION}.
2176      * <p>
2177      * The transitionName for the view background will be "android:navigation:background".
2178      * </p>
2179      */
setNavigationBarColor(@olorInt int color)2180     public abstract void setNavigationBarColor(@ColorInt int color);
2181 
2182     /** @hide */
setTheme(int resId)2183     public void setTheme(int resId) {
2184     }
2185 
2186     /**
2187      * Whether the caption should be displayed directly on the content rather than push the content
2188      * down. This affects only freeform windows since they display the caption.
2189      * @hide
2190      */
setOverlayWithDecorCaptionEnabled(boolean enabled)2191     public void setOverlayWithDecorCaptionEnabled(boolean enabled) {
2192         mOverlayWithDecorCaptionEnabled = enabled;
2193     }
2194 
2195     /** @hide */
isOverlayWithDecorCaptionEnabled()2196     public boolean isOverlayWithDecorCaptionEnabled() {
2197         return mOverlayWithDecorCaptionEnabled;
2198     }
2199 
2200     /** @hide */
notifyRestrictedCaptionAreaCallback(int left, int top, int right, int bottom)2201     public void notifyRestrictedCaptionAreaCallback(int left, int top, int right, int bottom) {
2202         if (mOnRestrictedCaptionAreaChangedListener != null) {
2203             mRestrictedCaptionAreaRect.set(left, top, right, bottom);
2204             mOnRestrictedCaptionAreaChangedListener.onRestrictedCaptionAreaChanged(
2205                     mRestrictedCaptionAreaRect);
2206         }
2207     }
2208 
2209     /**
2210      * Set what color should the caption controls be. By default the system will try to determine
2211      * the color from the theme. You can overwrite this by using {@link #DECOR_CAPTION_SHADE_DARK},
2212      * {@link #DECOR_CAPTION_SHADE_LIGHT}, or {@link #DECOR_CAPTION_SHADE_AUTO}.
2213      * @see #DECOR_CAPTION_SHADE_DARK
2214      * @see #DECOR_CAPTION_SHADE_LIGHT
2215      * @see #DECOR_CAPTION_SHADE_AUTO
2216      */
setDecorCaptionShade(int decorCaptionShade)2217     public abstract void setDecorCaptionShade(int decorCaptionShade);
2218 
2219     /**
2220      * Set the drawable that is drawn underneath the caption during the resizing.
2221      *
2222      * During the resizing the caption might not be drawn fast enough to match the new dimensions.
2223      * There is a second caption drawn underneath it that will be fast enough. By default the
2224      * caption is constructed from the theme. You can provide a drawable, that will be drawn instead
2225      * to better match your application.
2226      */
setResizingCaptionDrawable(Drawable drawable)2227     public abstract void setResizingCaptionDrawable(Drawable drawable);
2228 
2229     /**
2230      * Called when the activity changes from fullscreen mode to multi-window mode and visa-versa.
2231      * @hide
2232      */
onMultiWindowModeChanged()2233     public abstract void onMultiWindowModeChanged();
2234 
2235     /**
2236      * Called when the activity just relaunched.
2237      * @hide
2238      */
reportActivityRelaunched()2239     public abstract void reportActivityRelaunched();
2240 
2241     /**
2242      * Called to set flag to check if the close on swipe is enabled. This will only function if
2243      * FEATURE_SWIPE_TO_DISMISS has been set.
2244      * @hide
2245      */
setCloseOnSwipeEnabled(boolean closeOnSwipeEnabled)2246     public void setCloseOnSwipeEnabled(boolean closeOnSwipeEnabled) {
2247         mCloseOnSwipeEnabled = closeOnSwipeEnabled;
2248     }
2249 
2250     /**
2251      * @return {@code true} if the close on swipe is enabled.
2252      * @hide
2253      */
isCloseOnSwipeEnabled()2254     public boolean isCloseOnSwipeEnabled() {
2255         return mCloseOnSwipeEnabled;
2256     }
2257 }
2258