blob: 6eb3889ff1607e6d0eadc5dba95517d9d2241d3f [file] [log] [blame]
/*
* Copyright (C) 2013 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package androidx.appcompat.app;
import static android.view.ViewGroup.LayoutParams.MATCH_PARENT;
import static android.view.ViewGroup.LayoutParams.WRAP_CONTENT;
import static android.view.Window.FEATURE_OPTIONS_PANEL;
import static androidx.annotation.RestrictTo.Scope.LIBRARY;
import android.annotation.SuppressLint;
import android.app.Activity;
import android.app.Dialog;
import android.app.UiModeManager;
import android.content.BroadcastReceiver;
import android.content.ComponentName;
import android.content.Context;
import android.content.ContextWrapper;
import android.content.Intent;
import android.content.IntentFilter;
import android.content.pm.ActivityInfo;
import android.content.pm.PackageManager;
import android.content.res.Configuration;
import android.content.res.Resources;
import android.content.res.TypedArray;
import android.graphics.PixelFormat;
import android.graphics.Rect;
import android.graphics.drawable.Drawable;
import android.media.AudioManager;
import android.os.Build;
import android.os.Bundle;
import android.os.Parcel;
import android.os.Parcelable;
import android.os.PowerManager;
import android.text.TextUtils;
import android.util.AndroidRuntimeException;
import android.util.AttributeSet;
import android.util.Log;
import android.util.TypedValue;
import android.view.Gravity;
import android.view.KeyCharacterMap;
import android.view.KeyEvent;
import android.view.KeyboardShortcutGroup;
import android.view.LayoutInflater;
import android.view.Menu;
import android.view.MenuInflater;
import android.view.MenuItem;
import android.view.MotionEvent;
import android.view.View;
import android.view.ViewConfiguration;
import android.view.ViewGroup;
import android.view.ViewParent;
import android.view.Window;
import android.view.WindowManager;
import android.view.accessibility.AccessibilityEvent;
import android.widget.FrameLayout;
import android.widget.PopupWindow;
import android.widget.TextView;
import androidx.annotation.IdRes;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.annotation.RequiresApi;
import androidx.annotation.RestrictTo;
import androidx.annotation.StyleRes;
import androidx.annotation.VisibleForTesting;
import androidx.appcompat.R;
import androidx.appcompat.content.res.AppCompatResources;
import androidx.appcompat.view.ActionMode;
import androidx.appcompat.view.ContextThemeWrapper;
import androidx.appcompat.view.StandaloneActionMode;
import androidx.appcompat.view.SupportActionModeWrapper;
import androidx.appcompat.view.SupportMenuInflater;
import androidx.appcompat.view.WindowCallbackWrapper;
import androidx.appcompat.view.menu.ListMenuPresenter;
import androidx.appcompat.view.menu.MenuBuilder;
import androidx.appcompat.view.menu.MenuPresenter;
import androidx.appcompat.view.menu.MenuView;
import androidx.appcompat.widget.ActionBarContextView;
import androidx.appcompat.widget.AppCompatDrawableManager;
import androidx.appcompat.widget.ContentFrameLayout;
import androidx.appcompat.widget.DecorContentParent;
import androidx.appcompat.widget.FitWindowsViewGroup;
import androidx.appcompat.widget.TintTypedArray;
import androidx.appcompat.widget.Toolbar;
import androidx.appcompat.widget.VectorEnabledTintResources;
import androidx.appcompat.widget.ViewStubCompat;
import androidx.appcompat.widget.ViewUtils;
import androidx.collection.ArrayMap;
import androidx.core.app.ActivityCompat;
import androidx.core.app.NavUtils;
import androidx.core.view.KeyEventDispatcher;
import androidx.core.view.LayoutInflaterCompat;
import androidx.core.view.OnApplyWindowInsetsListener;
import androidx.core.view.ViewCompat;
import androidx.core.view.ViewPropertyAnimatorCompat;
import androidx.core.view.ViewPropertyAnimatorListenerAdapter;
import androidx.core.view.WindowCompat;
import androidx.core.view.WindowInsetsCompat;
import androidx.core.widget.PopupWindowCompat;
import androidx.lifecycle.Lifecycle;
import androidx.lifecycle.LifecycleOwner;
import org.xmlpull.v1.XmlPullParser;
import java.util.List;
import java.util.Map;
/**
* @hide
*/
@RestrictTo(LIBRARY)
class AppCompatDelegateImpl extends AppCompatDelegate
implements MenuBuilder.Callback, LayoutInflater.Factory2 {
private static final Map<Class<?>, Integer> sLocalNightModes = new ArrayMap<>();
private static final boolean DEBUG = false;
private static final boolean IS_PRE_LOLLIPOP = Build.VERSION.SDK_INT < 21;
private static final int[] sWindowBackgroundStyleable = {android.R.attr.windowBackground};
private static boolean sInstalledExceptionHandler;
/**
* AppCompat selectively uses applyOverrideConfiguration() for DayNight functionality.
* Unfortunately the framework has a few bugs around Resources instances on SDKs 21-25,
* resulting in the root Resources instance (i.e. Application) being modified when it
* shouldn't be. We can work around it by always calling applyOverrideConfiguration()
* where available.
*/
private static final boolean sAlwaysOverrideConfiguration = Build.VERSION.SDK_INT >= 21
&& Build.VERSION.SDK_INT <= 25;
static final String EXCEPTION_HANDLER_MESSAGE_SUFFIX= ". If the resource you are"
+ " trying to use is a vector resource, you may be referencing it in an unsupported"
+ " way. See AppCompatDelegate.setCompatVectorFromResourcesEnabled() for more info.";
static {
if (IS_PRE_LOLLIPOP && !sInstalledExceptionHandler) {
final Thread.UncaughtExceptionHandler defHandler
= Thread.getDefaultUncaughtExceptionHandler();
Thread.setDefaultUncaughtExceptionHandler(new Thread.UncaughtExceptionHandler() {
@Override
public void uncaughtException(Thread thread, final Throwable thowable) {
if (shouldWrapException(thowable)) {
// Now wrap the throwable, but append some extra information to the message
final Throwable wrapped = new Resources.NotFoundException(
thowable.getMessage() + EXCEPTION_HANDLER_MESSAGE_SUFFIX);
wrapped.initCause(thowable.getCause());
wrapped.setStackTrace(thowable.getStackTrace());
defHandler.uncaughtException(thread, wrapped);
} else {
defHandler.uncaughtException(thread, thowable);
}
}
private boolean shouldWrapException(Throwable throwable) {
if (throwable instanceof Resources.NotFoundException) {
final String message = throwable.getMessage();
return message != null && (message.contains("drawable")
|| message.contains("Drawable"));
}
return false;
}
});
sInstalledExceptionHandler = true;
}
}
final Object mHost;
final Context mContext;
Window mWindow;
private AppCompatWindowCallback mAppCompatWindowCallback;
final AppCompatCallback mAppCompatCallback;
ActionBar mActionBar;
MenuInflater mMenuInflater;
private CharSequence mTitle;
private DecorContentParent mDecorContentParent;
private ActionMenuPresenterCallback mActionMenuPresenterCallback;
private PanelMenuPresenterCallback mPanelMenuPresenterCallback;
ActionMode mActionMode;
ActionBarContextView mActionModeView;
PopupWindow mActionModePopup;
Runnable mShowActionModePopup;
ViewPropertyAnimatorCompat mFadeAnim = null;
private boolean mHandleNativeActionModes = true; // defaults to true
// true if we have installed a window sub-decor layout.
private boolean mSubDecorInstalled;
private ViewGroup mSubDecor;
private TextView mTitleView;
private View mStatusGuard;
// Used to keep track of Progress Bar Window features
private boolean mFeatureProgress, mFeatureIndeterminateProgress;
// true if this activity has an action bar.
boolean mHasActionBar;
// true if this activity's action bar overlays other activity content.
boolean mOverlayActionBar;
// true if this any action modes should overlay the activity content
boolean mOverlayActionMode;
// true if this activity is floating (e.g. Dialog)
boolean mIsFloating;
// true if this activity has no title
boolean mWindowNoTitle;
// Used for emulating PanelFeatureState
private boolean mClosingActionMenu;
private PanelFeatureState[] mPanels;
private PanelFeatureState mPreparedPanel;
private boolean mLongPressBackDown;
private boolean mBaseContextAttached;
private boolean mCreated;
private boolean mStarted;
@SuppressWarnings("WeakerAccess") /* synthetic access */
boolean mIsDestroyed;
@NightMode
private int mLocalNightMode = MODE_NIGHT_UNSPECIFIED;
private int mThemeResId;
private boolean mActivityHandlesUiMode;
private boolean mActivityHandlesUiModeChecked;
private AutoNightModeManager mAutoTimeNightModeManager;
private AutoNightModeManager mAutoBatteryNightModeManager;
boolean mInvalidatePanelMenuPosted;
int mInvalidatePanelMenuFeatures;
private final Runnable mInvalidatePanelMenuRunnable = new Runnable() {
@Override
public void run() {
if ((mInvalidatePanelMenuFeatures & 1 << FEATURE_OPTIONS_PANEL) != 0) {
doInvalidatePanelMenu(FEATURE_OPTIONS_PANEL);
}
if ((mInvalidatePanelMenuFeatures & 1 << FEATURE_SUPPORT_ACTION_BAR) != 0) {
doInvalidatePanelMenu(FEATURE_SUPPORT_ACTION_BAR);
}
mInvalidatePanelMenuPosted = false;
mInvalidatePanelMenuFeatures = 0;
}
};
private boolean mEnableDefaultActionBarUp;
private Rect mTempRect1;
private Rect mTempRect2;
private AppCompatViewInflater mAppCompatViewInflater;
AppCompatDelegateImpl(Activity activity, AppCompatCallback callback) {
this(activity, null, callback, activity);
}
AppCompatDelegateImpl(Dialog dialog, AppCompatCallback callback) {
this(dialog.getContext(), dialog.getWindow(), callback, dialog);
}
AppCompatDelegateImpl(Context context, Window window, AppCompatCallback callback) {
this(context, window, callback, context);
}
AppCompatDelegateImpl(Context context, Activity activity, AppCompatCallback callback) {
this(context, null, callback, activity);
}
private AppCompatDelegateImpl(Context context, Window window, AppCompatCallback callback,
Object host) {
mContext = context;
mAppCompatCallback = callback;
mHost = host;
if (mLocalNightMode == MODE_NIGHT_UNSPECIFIED && mHost instanceof Dialog) {
final AppCompatActivity activity = tryUnwrapContext();
if (activity != null) {
// This code path is used to detect when this Delegate is a child Delegate from
// an Activity, primarily for Dialogs. Dialogs use the Activity as it's Context,
// so we want to make sure that the this 'child' delegate does not interfere
// with the Activity config. The simplest way to do that is to match the
// outer Activity's local night mode
mLocalNightMode = activity.getDelegate().getLocalNightMode();
}
}
if (mLocalNightMode == MODE_NIGHT_UNSPECIFIED) {
// Try and read the current night mode from our static store
final Integer value = sLocalNightModes.get(mHost.getClass());
if (value != null) {
mLocalNightMode = value;
// Finally remove the value
sLocalNightModes.remove(mHost.getClass());
}
}
if (window != null) {
attachToWindow(window);
}
// Preload appcompat-specific handling of drawables that should be handled in a special
// way (for tinting etc). After the following line completes, calls from AppCompatResources
// to ResourceManagerInternal (in appcompat-resources) will handle those internal drawable
// paths correctly without having to go through AppCompatDrawableManager APIs.
AppCompatDrawableManager.preload();
}
@Override
public void attachBaseContext(Context context) {
// Activity.recreate() cannot be called before attach is complete.
applyDayNight(false, context.getResources().getConfiguration());
mBaseContextAttached = true;
}
@Override
public void onCreate(Bundle savedInstanceState) {
// attachBaseContext will only be called from an Activity, so make sure we switch this for
// Dialogs, etc
mBaseContextAttached = true;
// Our implicit call to applyDayNight() should not recreate until after the Activity is
// created
applyDayNight(false, null);
// We lazily fetch the Window for Activities, to allow DayNight to apply in
// attachBaseContext
ensureWindow();
if (mHost instanceof Activity) {
String parentActivityName = null;
try {
parentActivityName = NavUtils.getParentActivityName((Activity) mHost);
} catch (IllegalArgumentException iae) {
// Ignore in this case
}
if (parentActivityName != null) {
// Peek at the Action Bar and update it if it already exists
ActionBar ab = peekSupportActionBar();
if (ab == null) {
mEnableDefaultActionBarUp = true;
} else {
ab.setDefaultDisplayHomeAsUpEnabled(true);
}
}
}
mCreated = true;
}
@Override
public void onPostCreate(Bundle savedInstanceState) {
// Make sure that the sub decor is installed
ensureSubDecor();
}
@Override
public ActionBar getSupportActionBar() {
// The Action Bar should be lazily created as hasActionBar
// could change after onCreate
initWindowDecorActionBar();
return mActionBar;
}
final ActionBar peekSupportActionBar() {
return mActionBar;
}
final Window.Callback getWindowCallback() {
return mWindow.getCallback();
}
private void initWindowDecorActionBar() {
ensureSubDecor();
if (!mHasActionBar || mActionBar != null) {
return;
}
if (mHost instanceof Activity) {
mActionBar = new WindowDecorActionBar((Activity) mHost, mOverlayActionBar);
} else if (mHost instanceof Dialog) {
mActionBar = new WindowDecorActionBar((Dialog) mHost);
}
if (mActionBar != null) {
mActionBar.setDefaultDisplayHomeAsUpEnabled(mEnableDefaultActionBarUp);
}
}
@Override
public void setSupportActionBar(Toolbar toolbar) {
if (!(mHost instanceof Activity)) {
// Only Activities support custom Action Bars
return;
}
final ActionBar ab = getSupportActionBar();
if (ab instanceof WindowDecorActionBar) {
throw new IllegalStateException("This Activity already has an action bar supplied " +
"by the window decor. Do not request Window.FEATURE_SUPPORT_ACTION_BAR and set " +
"windowActionBar to false in your theme to use a Toolbar instead.");
}
// If we reach here then we're setting a new action bar
// First clear out the MenuInflater to make sure that it is valid for the new Action Bar
mMenuInflater = null;
// If we have an action bar currently, destroy it
if (ab != null) {
ab.onDestroy();
}
if (toolbar != null) {
final ToolbarActionBar tbab = new ToolbarActionBar(toolbar, getTitle(),
mAppCompatWindowCallback);
mActionBar = tbab;
mWindow.setCallback(tbab.getWrappedWindowCallback());
} else {
mActionBar = null;
// Re-set the original window callback since we may have already set a Toolbar wrapper
mWindow.setCallback(mAppCompatWindowCallback);
}
invalidateOptionsMenu();
}
final Context getActionBarThemedContext() {
Context context = null;
// If we have an action bar, let it return a themed context
ActionBar ab = getSupportActionBar();
if (ab != null) {
context = ab.getThemedContext();
}
if (context == null) {
context = mContext;
}
return context;
}
@Override
public MenuInflater getMenuInflater() {
// Make sure that action views can get an appropriate theme.
if (mMenuInflater == null) {
initWindowDecorActionBar();
mMenuInflater = new SupportMenuInflater(
mActionBar != null ? mActionBar.getThemedContext() : mContext);
}
return mMenuInflater;
}
@SuppressWarnings({"TypeParameterUnusedInFormals", "unchecked"})
@Nullable
@Override
public <T extends View> T findViewById(@IdRes int id) {
ensureSubDecor();
return (T) mWindow.findViewById(id);
}
@Override
public void onConfigurationChanged(Configuration newConfig) {
// If this is called before sub-decor is installed, ActionBar will not
// be properly initialized.
if (mHasActionBar && mSubDecorInstalled) {
// Note: The action bar will need to access
// view changes from superclass.
ActionBar ab = getSupportActionBar();
if (ab != null) {
ab.onConfigurationChanged(newConfig);
}
}
// Make sure that the DrawableManager knows about the new config
AppCompatDrawableManager.get().onConfigurationChanged(mContext);
// Re-apply Day/Night with the new configuration but disable recreations. Since this
// configuration change has only just happened we can safely just update the resources now
applyDayNight(false, null);
}
@Override
public void onStart() {
mStarted = true;
// This will apply day/night if the time has changed, it will also call through to
// setupAutoNightModeIfNeeded()
applyDayNight();
markStarted(this);
}
@Override
public void onStop() {
mStarted = false;
markStopped(this);
ActionBar ab = getSupportActionBar();
if (ab != null) {
ab.setShowHideAnimationEnabled(false);
}
if (mHost instanceof Dialog) {
// If the host is a Dialog, we should clean up the Auto managers now. This is
// because Dialogs do not have an onDestroy()
cleanupAutoManagers();
}
}
@Override
public void onPostResume() {
ActionBar ab = getSupportActionBar();
if (ab != null) {
ab.setShowHideAnimationEnabled(true);
}
}
@Override
public void setContentView(View v) {
ensureSubDecor();
ViewGroup contentParent = mSubDecor.findViewById(android.R.id.content);
contentParent.removeAllViews();
contentParent.addView(v);
mAppCompatWindowCallback.getWrapped().onContentChanged();
}
@Override
public void setContentView(int resId) {
ensureSubDecor();
ViewGroup contentParent = mSubDecor.findViewById(android.R.id.content);
contentParent.removeAllViews();
LayoutInflater.from(mContext).inflate(resId, contentParent);
mAppCompatWindowCallback.getWrapped().onContentChanged();
}
@Override
public void setContentView(View v, ViewGroup.LayoutParams lp) {
ensureSubDecor();
ViewGroup contentParent = mSubDecor.findViewById(android.R.id.content);
contentParent.removeAllViews();
contentParent.addView(v, lp);
mAppCompatWindowCallback.getWrapped().onContentChanged();
}
@Override
public void addContentView(View v, ViewGroup.LayoutParams lp) {
ensureSubDecor();
ViewGroup contentParent = mSubDecor.findViewById(android.R.id.content);
contentParent.addView(v, lp);
mAppCompatWindowCallback.getWrapped().onContentChanged();
}
@Override
public void onSaveInstanceState(Bundle outState) {
if (mLocalNightMode != MODE_NIGHT_UNSPECIFIED) {
// If we have a local night mode set, save it
sLocalNightModes.put(mHost.getClass(), mLocalNightMode);
}
}
@Override
public void onDestroy() {
// There are cases where onStop is not called on all API levels. We make sure here.
markStopped(this);
if (mInvalidatePanelMenuPosted) {
mWindow.getDecorView().removeCallbacks(mInvalidatePanelMenuRunnable);
}
mStarted = false;
mIsDestroyed = true;
if (mActionBar != null) {
mActionBar.onDestroy();
}
// Make sure we clean up any receivers setup for AUTO mode
cleanupAutoManagers();
}
private void cleanupAutoManagers() {
// Make sure we clean up any receivers setup for AUTO mode
if (mAutoTimeNightModeManager != null) {
mAutoTimeNightModeManager.cleanup();
}
if (mAutoBatteryNightModeManager != null) {
mAutoBatteryNightModeManager.cleanup();
}
}
@Override
public void setTheme(@StyleRes int themeResId) {
mThemeResId = themeResId;
}
private void ensureWindow() {
// We lazily fetch the Window for Activities, to allow DayNight to apply in
// attachBaseContext
if (mWindow == null && mHost instanceof Activity) {
attachToWindow(((Activity) mHost).getWindow());
}
if (mWindow == null) {
throw new IllegalStateException("We have not been given a Window");
}
}
private void attachToWindow(@NonNull Window window) {
if (mWindow != null) {
throw new IllegalStateException(
"AppCompat has already installed itself into the Window");
}
final Window.Callback callback = window.getCallback();
if (callback instanceof AppCompatWindowCallback) {
throw new IllegalStateException(
"AppCompat has already installed itself into the Window");
}
mAppCompatWindowCallback = new AppCompatWindowCallback(callback);
// Now install the new callback
window.setCallback(mAppCompatWindowCallback);
final TintTypedArray a = TintTypedArray.obtainStyledAttributes(
mContext, null, sWindowBackgroundStyleable);
final Drawable winBg = a.getDrawableIfKnown(0);
if (winBg != null) {
// Now set the background drawable
window.setBackgroundDrawable(winBg);
}
a.recycle();
mWindow = window;
}
private void ensureSubDecor() {
if (!mSubDecorInstalled) {
mSubDecor = createSubDecor();
// If a title was set before we installed the decor, propagate it now
CharSequence title = getTitle();
if (!TextUtils.isEmpty(title)) {
if (mDecorContentParent != null) {
mDecorContentParent.setWindowTitle(title);
} else if (peekSupportActionBar() != null) {
peekSupportActionBar().setWindowTitle(title);
} else if (mTitleView != null) {
mTitleView.setText(title);
}
}
applyFixedSizeWindow();
onSubDecorInstalled(mSubDecor);
mSubDecorInstalled = true;
// Invalidate if the panel menu hasn't been created before this.
// Panel menu invalidation is deferred avoiding application onCreateOptionsMenu
// being called in the middle of onCreate or similar.
// A pending invalidation will typically be resolved before the posted message
// would run normally in order to satisfy instance state restoration.
PanelFeatureState st = getPanelState(FEATURE_OPTIONS_PANEL, false);
if (!mIsDestroyed && (st == null || st.menu == null)) {
invalidatePanelMenu(FEATURE_SUPPORT_ACTION_BAR);
}
}
}
private ViewGroup createSubDecor() {
TypedArray a = mContext.obtainStyledAttributes(R.styleable.AppCompatTheme);
if (!a.hasValue(R.styleable.AppCompatTheme_windowActionBar)) {
a.recycle();
throw new IllegalStateException(
"You need to use a Theme.AppCompat theme (or descendant) with this activity.");
}
if (a.getBoolean(R.styleable.AppCompatTheme_windowNoTitle, false)) {
requestWindowFeature(Window.FEATURE_NO_TITLE);
} else if (a.getBoolean(R.styleable.AppCompatTheme_windowActionBar, false)) {
// Don't allow an action bar if there is no title.
requestWindowFeature(FEATURE_SUPPORT_ACTION_BAR);
}
if (a.getBoolean(R.styleable.AppCompatTheme_windowActionBarOverlay, false)) {
requestWindowFeature(FEATURE_SUPPORT_ACTION_BAR_OVERLAY);
}
if (a.getBoolean(R.styleable.AppCompatTheme_windowActionModeOverlay, false)) {
requestWindowFeature(FEATURE_ACTION_MODE_OVERLAY);
}
mIsFloating = a.getBoolean(R.styleable.AppCompatTheme_android_windowIsFloating, false);
a.recycle();
// Now let's make sure that the Window has installed its decor by retrieving it
ensureWindow();
mWindow.getDecorView();
final LayoutInflater inflater = LayoutInflater.from(mContext);
ViewGroup subDecor = null;
if (!mWindowNoTitle) {
if (mIsFloating) {
// If we're floating, inflate the dialog title decor
subDecor = (ViewGroup) inflater.inflate(
R.layout.abc_dialog_title_material, null);
// Floating windows can never have an action bar, reset the flags
mHasActionBar = mOverlayActionBar = false;
} else if (mHasActionBar) {
/**
* This needs some explanation. As we can not use the android:theme attribute
* pre-L, we emulate it by manually creating a LayoutInflater using a
* ContextThemeWrapper pointing to actionBarTheme.
*/
TypedValue outValue = new TypedValue();
mContext.getTheme().resolveAttribute(R.attr.actionBarTheme, outValue, true);
Context themedContext;
if (outValue.resourceId != 0) {
themedContext = new ContextThemeWrapper(mContext, outValue.resourceId);
} else {
themedContext = mContext;
}
// Now inflate the view using the themed context and set it as the content view
subDecor = (ViewGroup) LayoutInflater.from(themedContext)
.inflate(R.layout.abc_screen_toolbar, null);
mDecorContentParent = (DecorContentParent) subDecor
.findViewById(R.id.decor_content_parent);
mDecorContentParent.setWindowCallback(getWindowCallback());
/**
* Propagate features to DecorContentParent
*/
if (mOverlayActionBar) {
mDecorContentParent.initFeature(FEATURE_SUPPORT_ACTION_BAR_OVERLAY);
}
if (mFeatureProgress) {
mDecorContentParent.initFeature(Window.FEATURE_PROGRESS);
}
if (mFeatureIndeterminateProgress) {
mDecorContentParent.initFeature(Window.FEATURE_INDETERMINATE_PROGRESS);
}
}
} else {
if (mOverlayActionMode) {
subDecor = (ViewGroup) inflater.inflate(
R.layout.abc_screen_simple_overlay_action_mode, null);
} else {
subDecor = (ViewGroup) inflater.inflate(R.layout.abc_screen_simple, null);
}
if (Build.VERSION.SDK_INT >= 21) {
// If we're running on L or above, we can rely on ViewCompat's
// setOnApplyWindowInsetsListener
ViewCompat.setOnApplyWindowInsetsListener(subDecor,
new OnApplyWindowInsetsListener() {
@Override
public WindowInsetsCompat onApplyWindowInsets(View v,
WindowInsetsCompat insets) {
final int top = insets.getSystemWindowInsetTop();
final int newTop = updateStatusGuard(top);
if (top != newTop) {
insets = insets.replaceSystemWindowInsets(
insets.getSystemWindowInsetLeft(),
newTop,
insets.getSystemWindowInsetRight(),
insets.getSystemWindowInsetBottom());
}
// Now apply the insets on our view
return ViewCompat.onApplyWindowInsets(v, insets);
}
});
} else {
// Else, we need to use our own FitWindowsViewGroup handling
((FitWindowsViewGroup) subDecor).setOnFitSystemWindowsListener(
new FitWindowsViewGroup.OnFitSystemWindowsListener() {
@Override
public void onFitSystemWindows(Rect insets) {
insets.top = updateStatusGuard(insets.top);
}
});
}
}
if (subDecor == null) {
throw new IllegalArgumentException(
"AppCompat does not support the current theme features: { "
+ "windowActionBar: " + mHasActionBar
+ ", windowActionBarOverlay: "+ mOverlayActionBar
+ ", android:windowIsFloating: " + mIsFloating
+ ", windowActionModeOverlay: " + mOverlayActionMode
+ ", windowNoTitle: " + mWindowNoTitle
+ " }");
}
if (mDecorContentParent == null) {
mTitleView = (TextView) subDecor.findViewById(R.id.title);
}
// Make the decor optionally fit system windows, like the window's decor
ViewUtils.makeOptionalFitsSystemWindows(subDecor);
final ContentFrameLayout contentView = (ContentFrameLayout) subDecor.findViewById(
R.id.action_bar_activity_content);
final ViewGroup windowContentView = (ViewGroup) mWindow.findViewById(android.R.id.content);
if (windowContentView != null) {
// There might be Views already added to the Window's content view so we need to
// migrate them to our content view
while (windowContentView.getChildCount() > 0) {
final View child = windowContentView.getChildAt(0);
windowContentView.removeViewAt(0);
contentView.addView(child);
}
// Change our content FrameLayout to use the android.R.id.content id.
// Useful for fragments.
windowContentView.setId(View.NO_ID);
contentView.setId(android.R.id.content);
// The decorContent may have a foreground drawable set (windowContentOverlay).
// Remove this as we handle it ourselves
if (windowContentView instanceof FrameLayout) {
((FrameLayout) windowContentView).setForeground(null);
}
}
// Now set the Window's content view with the decor
mWindow.setContentView(subDecor);
contentView.setAttachListener(new ContentFrameLayout.OnAttachListener() {
@Override
public void onAttachedFromWindow() {}
@Override
public void onDetachedFromWindow() {
dismissPopups();
}
});
return subDecor;
}
void onSubDecorInstalled(ViewGroup subDecor) {}
private void applyFixedSizeWindow() {
ContentFrameLayout cfl = (ContentFrameLayout) mSubDecor.findViewById(android.R.id.content);
// This is a bit weird. In the framework, the window sizing attributes control
// the decor view's size, meaning that any padding is inset for the min/max widths below.
// We don't control measurement at that level, so we need to workaround it by making sure
// that the decor view's padding is taken into account.
final View windowDecor = mWindow.getDecorView();
cfl.setDecorPadding(windowDecor.getPaddingLeft(),
windowDecor.getPaddingTop(), windowDecor.getPaddingRight(),
windowDecor.getPaddingBottom());
TypedArray a = mContext.obtainStyledAttributes(R.styleable.AppCompatTheme);
a.getValue(R.styleable.AppCompatTheme_windowMinWidthMajor, cfl.getMinWidthMajor());
a.getValue(R.styleable.AppCompatTheme_windowMinWidthMinor, cfl.getMinWidthMinor());
if (a.hasValue(R.styleable.AppCompatTheme_windowFixedWidthMajor)) {
a.getValue(R.styleable.AppCompatTheme_windowFixedWidthMajor,
cfl.getFixedWidthMajor());
}
if (a.hasValue(R.styleable.AppCompatTheme_windowFixedWidthMinor)) {
a.getValue(R.styleable.AppCompatTheme_windowFixedWidthMinor,
cfl.getFixedWidthMinor());
}
if (a.hasValue(R.styleable.AppCompatTheme_windowFixedHeightMajor)) {
a.getValue(R.styleable.AppCompatTheme_windowFixedHeightMajor,
cfl.getFixedHeightMajor());
}
if (a.hasValue(R.styleable.AppCompatTheme_windowFixedHeightMinor)) {
a.getValue(R.styleable.AppCompatTheme_windowFixedHeightMinor,
cfl.getFixedHeightMinor());
}
a.recycle();
cfl.requestLayout();
}
@Override
public boolean requestWindowFeature(int featureId) {
featureId = sanitizeWindowFeatureId(featureId);
if (mWindowNoTitle && featureId == FEATURE_SUPPORT_ACTION_BAR) {
return false; // Ignore. No title dominates.
}
if (mHasActionBar && featureId == Window.FEATURE_NO_TITLE) {
// Remove the action bar feature if we have no title. No title dominates.
mHasActionBar = false;
}
switch (featureId) {
case FEATURE_SUPPORT_ACTION_BAR:
throwFeatureRequestIfSubDecorInstalled();
mHasActionBar = true;
return true;
case FEATURE_SUPPORT_ACTION_BAR_OVERLAY:
throwFeatureRequestIfSubDecorInstalled();
mOverlayActionBar = true;
return true;
case FEATURE_ACTION_MODE_OVERLAY:
throwFeatureRequestIfSubDecorInstalled();
mOverlayActionMode = true;
return true;
case Window.FEATURE_PROGRESS:
throwFeatureRequestIfSubDecorInstalled();
mFeatureProgress = true;
return true;
case Window.FEATURE_INDETERMINATE_PROGRESS:
throwFeatureRequestIfSubDecorInstalled();
mFeatureIndeterminateProgress = true;
return true;
case Window.FEATURE_NO_TITLE:
throwFeatureRequestIfSubDecorInstalled();
mWindowNoTitle = true;
return true;
}
return mWindow.requestFeature(featureId);
}
@Override
public boolean hasWindowFeature(int featureId) {
boolean result = false;
switch (sanitizeWindowFeatureId(featureId)) {
case FEATURE_SUPPORT_ACTION_BAR:
result = mHasActionBar;
break;
case FEATURE_SUPPORT_ACTION_BAR_OVERLAY:
result = mOverlayActionBar;
break;
case FEATURE_ACTION_MODE_OVERLAY:
result = mOverlayActionMode;
break;
case Window.FEATURE_PROGRESS:
result = mFeatureProgress;
break;
case Window.FEATURE_INDETERMINATE_PROGRESS:
result = mFeatureIndeterminateProgress;
break;
case Window.FEATURE_NO_TITLE:
result = mWindowNoTitle;
break;
}
return result || mWindow.hasFeature(featureId);
}
@Override
public final void setTitle(CharSequence title) {
mTitle = title;
if (mDecorContentParent != null) {
mDecorContentParent.setWindowTitle(title);
} else if (peekSupportActionBar() != null) {
peekSupportActionBar().setWindowTitle(title);
} else if (mTitleView != null) {
mTitleView.setText(title);
}
}
final CharSequence getTitle() {
// If the original window callback is an Activity, we'll use its title
if (mHost instanceof Activity) {
return ((Activity) mHost).getTitle();
}
// Else, we'll return the title we have recorded ourselves
return mTitle;
}
void onPanelClosed(final int featureId) {
if (featureId == FEATURE_SUPPORT_ACTION_BAR) {
ActionBar ab = getSupportActionBar();
if (ab != null) {
ab.dispatchMenuVisibilityChanged(false);
}
} else if (featureId == FEATURE_OPTIONS_PANEL) {
// Make sure that the options panel is closed. This is mainly used when we're using a
// ToolbarActionBar
PanelFeatureState st = getPanelState(featureId, true);
if (st.isOpen) {
closePanel(st, false);
}
}
}
void onMenuOpened(final int featureId) {
if (featureId == FEATURE_SUPPORT_ACTION_BAR) {
ActionBar ab = getSupportActionBar();
if (ab != null) {
ab.dispatchMenuVisibilityChanged(true);
}
}
}
@Override
public boolean onMenuItemSelected(MenuBuilder menu, MenuItem item) {
final Window.Callback cb = getWindowCallback();
if (cb != null && !mIsDestroyed) {
final PanelFeatureState panel = findMenuPanel(menu.getRootMenu());
if (panel != null) {
return cb.onMenuItemSelected(panel.featureId, item);
}
}
return false;
}
@Override
public void onMenuModeChange(MenuBuilder menu) {
reopenMenu(menu, true);
}
@Override
public ActionMode startSupportActionMode(@NonNull final ActionMode.Callback callback) {
if (callback == null) {
throw new IllegalArgumentException("ActionMode callback can not be null.");
}
if (mActionMode != null) {
mActionMode.finish();
}
final ActionMode.Callback wrappedCallback = new ActionModeCallbackWrapperV9(callback);
ActionBar ab = getSupportActionBar();
if (ab != null) {
mActionMode = ab.startActionMode(wrappedCallback);
if (mActionMode != null && mAppCompatCallback != null) {
mAppCompatCallback.onSupportActionModeStarted(mActionMode);
}
}
if (mActionMode == null) {
// If the action bar didn't provide an action mode, start the emulated window one
mActionMode = startSupportActionModeFromWindow(wrappedCallback);
}
return mActionMode;
}
@Override
public void invalidateOptionsMenu() {
final ActionBar ab = getSupportActionBar();
if (ab != null && ab.invalidateOptionsMenu()) return;
invalidatePanelMenu(FEATURE_OPTIONS_PANEL);
}
ActionMode startSupportActionModeFromWindow(@NonNull ActionMode.Callback callback) {
endOnGoingFadeAnimation();
if (mActionMode != null) {
mActionMode.finish();
}
if (!(callback instanceof ActionModeCallbackWrapperV9)) {
// If the callback hasn't been wrapped yet, wrap it
callback = new ActionModeCallbackWrapperV9(callback);
}
ActionMode mode = null;
if (mAppCompatCallback != null && !mIsDestroyed) {
try {
mode = mAppCompatCallback.onWindowStartingSupportActionMode(callback);
} catch (AbstractMethodError ame) {
// Older apps might not implement this callback method.
}
}
if (mode != null) {
mActionMode = mode;
} else {
if (mActionModeView == null) {
if (mIsFloating) {
// Use the action bar theme.
final TypedValue outValue = new TypedValue();
final Resources.Theme baseTheme = mContext.getTheme();
baseTheme.resolveAttribute(R.attr.actionBarTheme, outValue, true);
final Context actionBarContext;
if (outValue.resourceId != 0) {
final Resources.Theme actionBarTheme = mContext.getResources().newTheme();
actionBarTheme.setTo(baseTheme);
actionBarTheme.applyStyle(outValue.resourceId, true);
actionBarContext = new ContextThemeWrapper(mContext, 0);
actionBarContext.getTheme().setTo(actionBarTheme);
} else {
actionBarContext = mContext;
}
mActionModeView = new ActionBarContextView(actionBarContext);
mActionModePopup = new PopupWindow(actionBarContext, null,
R.attr.actionModePopupWindowStyle);
PopupWindowCompat.setWindowLayoutType(mActionModePopup,
WindowManager.LayoutParams.TYPE_APPLICATION);
mActionModePopup.setContentView(mActionModeView);
mActionModePopup.setWidth(ViewGroup.LayoutParams.MATCH_PARENT);
actionBarContext.getTheme().resolveAttribute(
R.attr.actionBarSize, outValue, true);
final int height = TypedValue.complexToDimensionPixelSize(outValue.data,
actionBarContext.getResources().getDisplayMetrics());
mActionModeView.setContentHeight(height);
mActionModePopup.setHeight(ViewGroup.LayoutParams.WRAP_CONTENT);
mShowActionModePopup = new Runnable() {
@Override
public void run() {
mActionModePopup.showAtLocation(
mActionModeView,
Gravity.TOP | Gravity.FILL_HORIZONTAL, 0, 0);
endOnGoingFadeAnimation();
if (shouldAnimateActionModeView()) {
mActionModeView.setAlpha(0f);
mFadeAnim = ViewCompat.animate(mActionModeView).alpha(1f);
mFadeAnim.setListener(new ViewPropertyAnimatorListenerAdapter() {
@Override
public void onAnimationStart(View view) {
mActionModeView.setVisibility(View.VISIBLE);
}
@Override
public void onAnimationEnd(View view) {
mActionModeView.setAlpha(1f);
mFadeAnim.setListener(null);
mFadeAnim = null;
}
});
} else {
mActionModeView.setAlpha(1f);
mActionModeView.setVisibility(View.VISIBLE);
}
}
};
} else {
ViewStubCompat stub = (ViewStubCompat) mSubDecor
.findViewById(R.id.action_mode_bar_stub);
if (stub != null) {
// Set the layout inflater so that it is inflated with the action bar's context
stub.setLayoutInflater(LayoutInflater.from(getActionBarThemedContext()));
mActionModeView = (ActionBarContextView) stub.inflate();
}
}
}
if (mActionModeView != null) {
endOnGoingFadeAnimation();
mActionModeView.killMode();
mode = new StandaloneActionMode(mActionModeView.getContext(), mActionModeView,
callback, mActionModePopup == null);
if (callback.onCreateActionMode(mode, mode.getMenu())) {
mode.invalidate();
mActionModeView.initForMode(mode);
mActionMode = mode;
if (shouldAnimateActionModeView()) {
mActionModeView.setAlpha(0f);
mFadeAnim = ViewCompat.animate(mActionModeView).alpha(1f);
mFadeAnim.setListener(new ViewPropertyAnimatorListenerAdapter() {
@Override
public void onAnimationStart(View view) {
mActionModeView.setVisibility(View.VISIBLE);
mActionModeView.sendAccessibilityEvent(
AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
if (mActionModeView.getParent() instanceof View) {
ViewCompat.requestApplyInsets((View) mActionModeView.getParent());
}
}
@Override
public void onAnimationEnd(View view) {
mActionModeView.setAlpha(1f);
mFadeAnim.setListener(null);
mFadeAnim = null;
}
});
} else {
mActionModeView.setAlpha(1f);
mActionModeView.setVisibility(View.VISIBLE);
mActionModeView.sendAccessibilityEvent(
AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
if (mActionModeView.getParent() instanceof View) {
ViewCompat.requestApplyInsets((View) mActionModeView.getParent());
}
}
if (mActionModePopup != null) {
mWindow.getDecorView().post(mShowActionModePopup);
}
} else {
mActionMode = null;
}
}
}
if (mActionMode != null && mAppCompatCallback != null) {
mAppCompatCallback.onSupportActionModeStarted(mActionMode);
}
return mActionMode;
}
final boolean shouldAnimateActionModeView() {
// We only to animate the action mode in if the sub decor has already been laid out.
// If it hasn't been laid out, it hasn't been drawn to screen yet.
return mSubDecorInstalled && mSubDecor != null && ViewCompat.isLaidOut(mSubDecor);
}
@Override
public void setHandleNativeActionModesEnabled(boolean enabled) {
mHandleNativeActionModes = enabled;
}
@Override
public boolean isHandleNativeActionModesEnabled() {
return mHandleNativeActionModes;
}
void endOnGoingFadeAnimation() {
if (mFadeAnim != null) {
mFadeAnim.cancel();
}
}
boolean onBackPressed() {
// Back cancels action modes first.
if (mActionMode != null) {
mActionMode.finish();
return true;
}
// Next collapse any expanded action views.
ActionBar ab = getSupportActionBar();
if (ab != null && ab.collapseActionView()) {
return true;
}
// Let the call through...
return false;
}
boolean onKeyShortcut(int keyCode, KeyEvent ev) {
// Let the Action Bar have a chance at handling the shortcut
ActionBar ab = getSupportActionBar();
if (ab != null && ab.onKeyShortcut(keyCode, ev)) {
return true;
}
// If the panel is already prepared, then perform the shortcut using it.
boolean handled;
if (mPreparedPanel != null) {
handled = performPanelShortcut(mPreparedPanel, ev.getKeyCode(), ev,
Menu.FLAG_PERFORM_NO_CLOSE);
if (handled) {
if (mPreparedPanel != null) {
mPreparedPanel.isHandled = true;
}
return true;
}
}
// If the panel is not prepared, then we may be trying to handle a shortcut key
// combination such as Control+C. Temporarily prepare the panel then mark it
// unprepared again when finished to ensure that the panel will again be prepared
// the next time it is shown for real.
if (mPreparedPanel == null) {
PanelFeatureState st = getPanelState(FEATURE_OPTIONS_PANEL, true);
preparePanel(st, ev);
handled = performPanelShortcut(st, ev.getKeyCode(), ev, Menu.FLAG_PERFORM_NO_CLOSE);
st.isPrepared = false;
if (handled) {
return true;
}
}
return false;
}
boolean dispatchKeyEvent(KeyEvent event) {
// Check AppCompatDialog directly since it isn't able to implement KeyEventDispatcher
// while it is @hide.
if (mHost instanceof KeyEventDispatcher.Component || mHost instanceof AppCompatDialog) {
View root = mWindow.getDecorView();
if (root != null && KeyEventDispatcher.dispatchBeforeHierarchy(root, event)) {
return true;
}
}
if (event.getKeyCode() == KeyEvent.KEYCODE_MENU) {
// If this is a MENU event, let the Activity have a go.
if (mAppCompatWindowCallback.getWrapped().dispatchKeyEvent(event)) {
return true;
}
}
final int keyCode = event.getKeyCode();
final int action = event.getAction();
final boolean isDown = action == KeyEvent.ACTION_DOWN;
return (isDown ? onKeyDown(keyCode, event) : onKeyUp(keyCode, event));
}
boolean onKeyUp(int keyCode, KeyEvent event) {
switch (keyCode) {
case KeyEvent.KEYCODE_MENU:
onKeyUpPanel(Window.FEATURE_OPTIONS_PANEL, event);
return true;
case KeyEvent.KEYCODE_BACK:
final boolean wasLongPressBackDown = mLongPressBackDown;
mLongPressBackDown = false;
PanelFeatureState st = getPanelState(Window.FEATURE_OPTIONS_PANEL, false);
if (st != null && st.isOpen) {
if (!wasLongPressBackDown) {
// Certain devices allow opening the options menu via a long press of the
// back button. We should only close the open options menu if it wasn't
// opened via a long press gesture.
closePanel(st, true);
}
return true;
}
if (onBackPressed()) {
return true;
}
break;
}
return false;
}
boolean onKeyDown(int keyCode, KeyEvent event) {
switch (keyCode) {
case KeyEvent.KEYCODE_MENU:
onKeyDownPanel(Window.FEATURE_OPTIONS_PANEL, event);
// We need to return true here and not let it bubble up to the Window.
// For empty menus, PhoneWindow's KEYCODE_BACK handling will steals all events,
// not allowing the Activity to call onBackPressed().
return true;
case KeyEvent.KEYCODE_BACK:
// Certain devices allow opening the options menu via a long press of the back
// button. We keep a record of whether the last event is from a long press.
mLongPressBackDown = (event.getFlags() & KeyEvent.FLAG_LONG_PRESS) != 0;
break;
}
return false;
}
@Override
public View createView(View parent, final String name, @NonNull Context context,
@NonNull AttributeSet attrs) {
if (mAppCompatViewInflater == null) {
TypedArray a = mContext.obtainStyledAttributes(R.styleable.AppCompatTheme);
String viewInflaterClassName =
a.getString(R.styleable.AppCompatTheme_viewInflaterClass);
if (viewInflaterClassName == null) {
// Set to null (the default in all AppCompat themes). Create the base inflater
// (no reflection)
mAppCompatViewInflater = new AppCompatViewInflater();
} else {
try {
Class<?> viewInflaterClass = Class.forName(viewInflaterClassName);
mAppCompatViewInflater =
(AppCompatViewInflater) viewInflaterClass.getDeclaredConstructor()
.newInstance();
} catch (Throwable t) {
Log.i(TAG, "Failed to instantiate custom view inflater "
+ viewInflaterClassName + ". Falling back to default.", t);
mAppCompatViewInflater = new AppCompatViewInflater();
}
}
}
boolean inheritContext = false;
if (IS_PRE_LOLLIPOP) {
inheritContext = (attrs instanceof XmlPullParser)
// If we have a XmlPullParser, we can detect where we are in the layout
? ((XmlPullParser) attrs).getDepth() > 1
// Otherwise we have to use the old heuristic
: shouldInheritContext((ViewParent) parent);
}
return mAppCompatViewInflater.createView(parent, name, context, attrs, inheritContext,
IS_PRE_LOLLIPOP, /* Only read android:theme pre-L (L+ handles this anyway) */
true, /* Read read app:theme as a fallback at all times for legacy reasons */
VectorEnabledTintResources.shouldBeUsed() /* Only tint wrap the context if enabled */
);
}
private boolean shouldInheritContext(ViewParent parent) {
if (parent == null) {
// The initial parent is null so just return false
return false;
}
final View windowDecor = mWindow.getDecorView();
while (true) {
if (parent == null) {
// Bingo. We've hit a view which has a null parent before being terminated from
// the loop. This is (most probably) because it's the root view in an inflation
// call, therefore we should inherit. This works as the inflated layout is only
// added to the hierarchy at the end of the inflate() call.
return true;
} else if (parent == windowDecor || !(parent instanceof View)
|| ViewCompat.isAttachedToWindow((View) parent)) {
// We have either hit the window's decor view, a parent which isn't a View
// (i.e. ViewRootImpl), or an attached view, so we know that the original parent
// is currently added to the view hierarchy. This means that it has not be
// inflated in the current inflate() call and we should not inherit the context.
return false;
}
parent = parent.getParent();
}
}
@Override
public void installViewFactory() {
LayoutInflater layoutInflater = LayoutInflater.from(mContext);
if (layoutInflater.getFactory() == null) {
LayoutInflaterCompat.setFactory2(layoutInflater, this);
} else {
if (!(layoutInflater.getFactory2() instanceof AppCompatDelegateImpl)) {
Log.i(TAG, "The Activity's LayoutInflater already has a Factory installed"
+ " so we can not install AppCompat's");
}
}
}
/**
* From {@link LayoutInflater.Factory2}.
*/
@Override
public final View onCreateView(View parent, String name, Context context, AttributeSet attrs) {
return createView(parent, name, context, attrs);
}
/**
* From {@link LayoutInflater.Factory2}.
*/
@Override
public View onCreateView(String name, Context context, AttributeSet attrs) {
return onCreateView(null, name, context, attrs);
}
@Nullable
private AppCompatActivity tryUnwrapContext() {
Context context = mContext;
while (context != null) {
if (context instanceof AppCompatActivity) {
return (AppCompatActivity) context;
}
if (context instanceof ContextWrapper) {
context = ((ContextWrapper) context).getBaseContext();
} else {
return null;
}
}
return null;
}
private void openPanel(final PanelFeatureState st, KeyEvent event) {
// Already open, return
if (st.isOpen || mIsDestroyed) {
return;
}
// Don't open an options panel on xlarge devices.
// (The app should be using an action bar for menu items.)
if (st.featureId == FEATURE_OPTIONS_PANEL) {
Configuration config = mContext.getResources().getConfiguration();
boolean isXLarge = (config.screenLayout & Configuration.SCREENLAYOUT_SIZE_MASK)
== Configuration.SCREENLAYOUT_SIZE_XLARGE;
if (isXLarge) {
return;
}
}
Window.Callback cb = getWindowCallback();
if ((cb != null) && (!cb.onMenuOpened(st.featureId, st.menu))) {
// Callback doesn't want the menu to open, reset any state
closePanel(st, true);
return;
}
final WindowManager wm = (WindowManager) mContext.getSystemService(Context.WINDOW_SERVICE);
if (wm == null) {
return;
}
// Prepare panel (should have been done before, but just in case)
if (!preparePanel(st, event)) {
return;
}
int width = WRAP_CONTENT;
if (st.decorView == null || st.refreshDecorView) {
if (st.decorView == null) {
// Initialize the panel decor, this will populate st.decorView
if (!initializePanelDecor(st) || (st.decorView == null))
return;
} else if (st.refreshDecorView && (st.decorView.getChildCount() > 0)) {
// Decor needs refreshing, so remove its views
st.decorView.removeAllViews();
}
// This will populate st.shownPanelView
if (!initializePanelContent(st) || !st.hasPanelItems()) {
// If st.decorView was populated but we're not showing the menu for some reason,
// make sure we try again rather than showing a potentially empty st.decorView.
st.refreshDecorView = true;
return;
}
ViewGroup.LayoutParams lp = st.shownPanelView.getLayoutParams();
if (lp == null) {
lp = new ViewGroup.LayoutParams(WRAP_CONTENT, WRAP_CONTENT);
}
int backgroundResId = st.background;
st.decorView.setBackgroundResource(backgroundResId);
ViewParent shownPanelParent = st.shownPanelView.getParent();
if (shownPanelParent instanceof ViewGroup) {
((ViewGroup) shownPanelParent).removeView(st.shownPanelView);
}
st.decorView.addView(st.shownPanelView, lp);
/*
* Give focus to the view, if it or one of its children does not
* already have it.
*/
if (!st.shownPanelView.hasFocus()) {
st.shownPanelView.requestFocus();
}
} else if (st.createdPanelView != null) {
// If we already had a panel view, carry width=MATCH_PARENT through
// as we did above when it was created.
ViewGroup.LayoutParams lp = st.createdPanelView.getLayoutParams();
if (lp != null && lp.width == ViewGroup.LayoutParams.MATCH_PARENT) {
width = MATCH_PARENT;
}
}
st.isHandled = false;
WindowManager.LayoutParams lp = new WindowManager.LayoutParams(
width, WRAP_CONTENT,
st.x, st.y, WindowManager.LayoutParams.TYPE_APPLICATION_SUB_PANEL,
WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM
| WindowManager.LayoutParams.FLAG_SPLIT_TOUCH,
PixelFormat.TRANSLUCENT);
lp.gravity = st.gravity;
lp.windowAnimations = st.windowAnimations;
wm.addView(st.decorView, lp);
st.isOpen = true;
}
private boolean initializePanelDecor(PanelFeatureState st) {
st.setStyle(getActionBarThemedContext());
st.decorView = new ListMenuDecorView(st.listPresenterContext);
st.gravity = Gravity.CENTER | Gravity.BOTTOM;
return true;
}
private void reopenMenu(MenuBuilder menu, boolean toggleMenuMode) {
if (mDecorContentParent != null && mDecorContentParent.canShowOverflowMenu()
&& (!ViewConfiguration.get(mContext).hasPermanentMenuKey()
|| mDecorContentParent.isOverflowMenuShowPending())) {
final Window.Callback cb = getWindowCallback();
if (!mDecorContentParent.isOverflowMenuShowing() || !toggleMenuMode) {
if (cb != null && !mIsDestroyed) {
// If we have a menu invalidation pending, do it now.
if (mInvalidatePanelMenuPosted &&
(mInvalidatePanelMenuFeatures & (1 << FEATURE_OPTIONS_PANEL)) != 0) {
mWindow.getDecorView().removeCallbacks(mInvalidatePanelMenuRunnable);
mInvalidatePanelMenuRunnable.run();
}
final PanelFeatureState st = getPanelState(FEATURE_OPTIONS_PANEL, true);
// If we don't have a menu or we're waiting for a full content refresh,
// forget it. This is a lingering event that no longer matters.
if (st.menu != null && !st.refreshMenuContent &&
cb.onPreparePanel(FEATURE_OPTIONS_PANEL, st.createdPanelView, st.menu)) {
cb.onMenuOpened(FEATURE_SUPPORT_ACTION_BAR, st.menu);
mDecorContentParent.showOverflowMenu();
}
}
} else {
mDecorContentParent.hideOverflowMenu();
if (!mIsDestroyed) {
final PanelFeatureState st = getPanelState(FEATURE_OPTIONS_PANEL, true);
cb.onPanelClosed(FEATURE_SUPPORT_ACTION_BAR, st.menu);
}
}
return;
}
PanelFeatureState st = getPanelState(FEATURE_OPTIONS_PANEL, true);
st.refreshDecorView = true;
closePanel(st, false);
openPanel(st, null);
}
private boolean initializePanelMenu(final PanelFeatureState st) {
Context context = mContext;
// If we have an action bar, initialize the menu with the right theme.
if ((st.featureId == FEATURE_OPTIONS_PANEL || st.featureId == FEATURE_SUPPORT_ACTION_BAR) &&
mDecorContentParent != null) {
final TypedValue outValue = new TypedValue();
final Resources.Theme baseTheme = context.getTheme();
baseTheme.resolveAttribute(R.attr.actionBarTheme, outValue, true);
Resources.Theme widgetTheme = null;
if (outValue.resourceId != 0) {
widgetTheme = context.getResources().newTheme();
widgetTheme.setTo(baseTheme);
widgetTheme.applyStyle(outValue.resourceId, true);
widgetTheme.resolveAttribute(
R.attr.actionBarWidgetTheme, outValue, true);
} else {
baseTheme.resolveAttribute(
R.attr.actionBarWidgetTheme, outValue, true);
}
if (outValue.resourceId != 0) {
if (widgetTheme == null) {
widgetTheme = context.getResources().newTheme();
widgetTheme.setTo(baseTheme);
}
widgetTheme.applyStyle(outValue.resourceId, true);
}
if (widgetTheme != null) {
context = new ContextThemeWrapper(context, 0);
context.getTheme().setTo(widgetTheme);
}
}
final MenuBuilder menu = new MenuBuilder(context);
menu.setCallback(this);
st.setMenu(menu);
return true;
}
private boolean initializePanelContent(PanelFeatureState st) {
if (st.createdPanelView != null) {
st.shownPanelView = st.createdPanelView;
return true;
}
if (st.menu == null) {
return false;
}
if (mPanelMenuPresenterCallback == null) {
mPanelMenuPresenterCallback = new PanelMenuPresenterCallback();
}
MenuView menuView = st.getListMenuView(mPanelMenuPresenterCallback);
st.shownPanelView = (View) menuView;
return st.shownPanelView != null;
}
private boolean preparePanel(PanelFeatureState st, KeyEvent event) {
if (mIsDestroyed) {
return false;
}
// Already prepared (isPrepared will be reset to false later)
if (st.isPrepared) {
return true;
}
if ((mPreparedPanel != null) && (mPreparedPanel != st)) {
// Another Panel is prepared and possibly open, so close it
closePanel(mPreparedPanel, false);
}
final Window.Callback cb = getWindowCallback();
if (cb != null) {
st.createdPanelView = cb.onCreatePanelView(st.featureId);
}
final boolean isActionBarMenu =
(st.featureId == FEATURE_OPTIONS_PANEL || st.featureId == FEATURE_SUPPORT_ACTION_BAR);
if (isActionBarMenu && mDecorContentParent != null) {
// Enforce ordering guarantees around events so that the action bar never
// dispatches menu-related events before the panel is prepared.
mDecorContentParent.setMenuPrepared();
}
if (st.createdPanelView == null &&
(!isActionBarMenu || !(peekSupportActionBar() instanceof ToolbarActionBar))) {
// Since ToolbarActionBar handles the list options menu itself, we only want to
// init this menu panel if we're not using a TAB.
if (st.menu == null || st.refreshMenuContent) {
if (st.menu == null) {
if (!initializePanelMenu(st) || (st.menu == null)) {
return false;
}
}
if (isActionBarMenu && mDecorContentParent != null) {
if (mActionMenuPresenterCallback == null) {
mActionMenuPresenterCallback = new ActionMenuPresenterCallback();
}
mDecorContentParent.setMenu(st.menu, mActionMenuPresenterCallback);
}
// Creating the panel menu will involve a lot of manipulation;
// don't dispatch change events to presenters until we're done.
st.menu.stopDispatchingItemsChanged();
if (!cb.onCreatePanelMenu(st.featureId, st.menu)) {
// Ditch the menu created above
st.setMenu(null);
if (isActionBarMenu && mDecorContentParent != null) {
// Don't show it in the action bar either
mDecorContentParent.setMenu(null, mActionMenuPresenterCallback);
}
return false;
}
st.refreshMenuContent = false;
}
// Preparing the panel menu can involve a lot of manipulation;
// don't dispatch change events to presenters until we're done.
st.menu.stopDispatchingItemsChanged();
// Restore action view state before we prepare. This gives apps
// an opportunity to override frozen/restored state in onPrepare.
if (st.frozenActionViewState != null) {
st.menu.restoreActionViewStates(st.frozenActionViewState);
st.frozenActionViewState = null;
}
// Callback and return if the callback does not want to show the menu
if (!cb.onPreparePanel(FEATURE_OPTIONS_PANEL, st.createdPanelView, st.menu)) {
if (isActionBarMenu && mDecorContentParent != null) {
// The app didn't want to show the menu for now but it still exists.
// Clear it out of the action bar.
mDecorContentParent.setMenu(null, mActionMenuPresenterCallback);
}
st.menu.startDispatchingItemsChanged();
return false;
}
// Set the proper keymap
KeyCharacterMap kmap = KeyCharacterMap.load(
event != null ? event.getDeviceId() : KeyCharacterMap.VIRTUAL_KEYBOARD);
st.qwertyMode = kmap.getKeyboardType() != KeyCharacterMap.NUMERIC;
st.menu.setQwertyMode(st.qwertyMode);
st.menu.startDispatchingItemsChanged();
}
// Set other state
st.isPrepared = true;
st.isHandled = false;
mPreparedPanel = st;
return true;
}
void checkCloseActionMenu(MenuBuilder menu) {
if (mClosingActionMenu) {
return;
}
mClosingActionMenu = true;
mDecorContentParent.dismissPopups();
Window.Callback cb = getWindowCallback();
if (cb != null && !mIsDestroyed) {
cb.onPanelClosed(FEATURE_SUPPORT_ACTION_BAR, menu);
}
mClosingActionMenu = false;
}
void closePanel(int featureId) {
closePanel(getPanelState(featureId, true), true);
}
void closePanel(PanelFeatureState st, boolean doCallback) {
if (doCallback && st.featureId == FEATURE_OPTIONS_PANEL &&
mDecorContentParent != null && mDecorContentParent.isOverflowMenuShowing()) {
checkCloseActionMenu(st.menu);
return;
}
final WindowManager wm = (WindowManager) mContext.getSystemService(Context.WINDOW_SERVICE);
if (wm != null && st.isOpen && st.decorView != null) {
wm.removeView(st.decorView);
if (doCallback) {
callOnPanelClosed(st.featureId, st, null);
}
}
st.isPrepared = false;
st.isHandled = false;
st.isOpen = false;
// This view is no longer shown, so null it out
st.shownPanelView = null;
// Next time the menu opens, it should not be in expanded mode, so
// force a refresh of the decor
st.refreshDecorView = true;
if (mPreparedPanel == st) {
mPreparedPanel = null;
}
}
private boolean onKeyDownPanel(int featureId, KeyEvent event) {
if (event.getRepeatCount() == 0) {
PanelFeatureState st = getPanelState(featureId, true);
if (!st.isOpen) {
return preparePanel(st, event);
}
}
return false;
}
private boolean onKeyUpPanel(int featureId, KeyEvent event) {
if (mActionMode != null) {
return false;
}
boolean handled = false;
final PanelFeatureState st = getPanelState(featureId, true);
if (featureId == FEATURE_OPTIONS_PANEL && mDecorContentParent != null &&
mDecorContentParent.canShowOverflowMenu() &&
!ViewConfiguration.get(mContext).hasPermanentMenuKey()) {
if (!mDecorContentParent.isOverflowMenuShowing()) {
if (!mIsDestroyed && preparePanel(st, event)) {
handled = mDecorContentParent.showOverflowMenu();
}
} else {
handled = mDecorContentParent.hideOverflowMenu();
}
} else {
if (st.isOpen || st.isHandled) {
// Play the sound effect if the user closed an open menu (and not if
// they just released a menu shortcut)
handled = st.isOpen;
// Close menu
closePanel(st, true);
} else if (st.isPrepared) {
boolean show = true;
if (st.refreshMenuContent) {
// Something may have invalidated the menu since we prepared it.
// Re-prepare it to refresh.
st.isPrepared = false;
show = preparePanel(st, event);
}
if (show) {
// Show menu
openPanel(st, event);
handled = true;
}
}
}
if (handled) {
AudioManager audioManager = (AudioManager) mContext.getSystemService(
Context.AUDIO_SERVICE);
if (audioManager != null) {
audioManager.playSoundEffect(AudioManager.FX_KEY_CLICK);
} else {
Log.w(TAG, "Couldn't get audio manager");
}
}
return handled;
}
void callOnPanelClosed(int featureId, PanelFeatureState panel, Menu menu) {
// Try to get a menu
if (menu == null) {
// Need a panel to grab the menu, so try to get that
if (panel == null) {
if ((featureId >= 0) && (featureId < mPanels.length)) {
panel = mPanels[featureId];
}
}
if (panel != null) {
// menu still may be null, which is okay--we tried our best
menu = panel.menu;
}
}
// If the panel is not open, do not callback
if ((panel != null) && (!panel.isOpen))
return;
if (!mIsDestroyed) {
// We need to be careful which callback we dispatch the call to. We can not dispatch
// this to the Window's callback since that will call back into this method and cause a
// crash. Instead we need to dispatch down to the original Activity/Dialog/etc.
mAppCompatWindowCallback.getWrapped().onPanelClosed(featureId, menu);
}
}
PanelFeatureState findMenuPanel(Menu menu) {
final PanelFeatureState[] panels = mPanels;
final int N = panels != null ? panels.length : 0;
for (int i = 0; i < N; i++) {
final PanelFeatureState panel = panels[i];
if (panel != null && panel.menu == menu) {
return panel;
}
}
return null;
}
protected PanelFeatureState getPanelState(int featureId, boolean required) {
PanelFeatureState[] ar;
if ((ar = mPanels) == null || ar.length <= featureId) {
PanelFeatureState[] nar = new PanelFeatureState[featureId + 1];
if (ar != null) {
System.arraycopy(ar, 0, nar, 0, ar.length);
}
mPanels = ar = nar;
}
PanelFeatureState st = ar[featureId];
if (st == null) {
ar[featureId] = st = new PanelFeatureState(featureId);
}
return st;
}
private boolean performPanelShortcut(PanelFeatureState st, int keyCode, KeyEvent event,
int flags) {
if (event.isSystem()) {
return false;
}
boolean handled = false;
// Only try to perform menu shortcuts if preparePanel returned true (possible false
// return value from application not wanting to show the menu).
if ((st.isPrepared || preparePanel(st, event)) && st.menu != null) {
// The menu is prepared now, perform the shortcut on it
handled = st.menu.performShortcut(keyCode, event, flags);
}
if (handled) {
// Only close down the menu if we don't have an action bar keeping it open.
if ((flags & Menu.FLAG_PERFORM_NO_CLOSE) == 0 && mDecorContentParent == null) {
closePanel(st, true);
}
}
return handled;
}
private void invalidatePanelMenu(int featureId) {
mInvalidatePanelMenuFeatures |= 1 << featureId;
if (!mInvalidatePanelMenuPosted) {
ViewCompat.postOnAnimation(mWindow.getDecorView(), mInvalidatePanelMenuRunnable);
mInvalidatePanelMenuPosted = true;
}
}
void doInvalidatePanelMenu(int featureId) {
PanelFeatureState st = getPanelState(featureId, true);
Bundle savedActionViewStates = null;
if (st.menu != null) {
savedActionViewStates = new Bundle();
st.menu.saveActionViewStates(savedActionViewStates);
if (savedActionViewStates.size() > 0) {
st.frozenActionViewState = savedActionViewStates;
}
// This will be started again when the panel is prepared.
st.menu.stopDispatchingItemsChanged();
st.menu.clear();
}
st.refreshMenuContent = true;
st.refreshDecorView = true;
// Prepare the options panel if we have an action bar
if ((featureId == FEATURE_SUPPORT_ACTION_BAR || featureId == FEATURE_OPTIONS_PANEL)
&& mDecorContentParent != null) {
st = getPanelState(Window.FEATURE_OPTIONS_PANEL, false);
if (st != null) {
st.isPrepared = false;
preparePanel(st, null);
}
}
}
/**
* Updates the status bar guard
*
* @param insetTop the current top system window inset
* @return the new top system window inset
*/
int updateStatusGuard(int insetTop) {
boolean showStatusGuard = false;
// Show the status guard when the non-overlay contextual action bar is showing
if (mActionModeView != null) {
if (mActionModeView.getLayoutParams() instanceof ViewGroup.MarginLayoutParams) {
ViewGroup.MarginLayoutParams mlp = (ViewGroup.MarginLayoutParams)
mActionModeView.getLayoutParams();
boolean mlpChanged = false;
if (mActionModeView.isShown()) {
if (mTempRect1 == null) {
mTempRect1 = new Rect();
mTempRect2 = new Rect();
}
final Rect insets = mTempRect1;
final Rect localInsets = mTempRect2;
insets.set(0, insetTop, 0, 0);
ViewUtils.computeFitSystemWindows(mSubDecor, insets, localInsets);
final int newMargin = localInsets.top == 0 ? insetTop : 0;
if (mlp.topMargin != newMargin) {
mlpChanged = true;
mlp.topMargin = insetTop;
if (mStatusGuard == null) {
mStatusGuard = new View(mContext);
mStatusGuard.setBackgroundColor(mContext.getResources()
.getColor(R.color.abc_input_method_navigation_guard));
mSubDecor.addView(mStatusGuard, -1,
new ViewGroup.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT,
insetTop));
} else {
ViewGroup.LayoutParams lp = mStatusGuard.getLayoutParams();
if (lp.height != insetTop) {
lp.height = insetTop;
mStatusGuard.setLayoutParams(lp);
}
}
}
// The action mode's theme may differ from the app, so
// always show the status guard above it.
showStatusGuard = mStatusGuard != null;
// We only need to consume the insets if the action
// mode is overlaid on the app content (e.g. it's
// sitting in a FrameLayout, see
// screen_simple_overlay_action_mode.xml).
if (!mOverlayActionMode && showStatusGuard) {
insetTop = 0;
}
} else {
// reset top margin
if (mlp.topMargin != 0) {
mlpChanged = true;
mlp.topMargin = 0;
}
}
if (mlpChanged) {
mActionModeView.setLayoutParams(mlp);
}
}
}
if (mStatusGuard != null) {
mStatusGuard.setVisibility(showStatusGuard ? View.VISIBLE : View.GONE);
}
return insetTop;
}
private void throwFeatureRequestIfSubDecorInstalled() {
if (mSubDecorInstalled) {
throw new AndroidRuntimeException(
"Window feature must be requested before adding content");
}
}
private int sanitizeWindowFeatureId(int featureId) {
if (featureId == WindowCompat.FEATURE_ACTION_BAR) {
Log.i(TAG, "You should now use the AppCompatDelegate.FEATURE_SUPPORT_ACTION_BAR"
+ " id when requesting this feature.");
return FEATURE_SUPPORT_ACTION_BAR;
} else if (featureId == WindowCompat.FEATURE_ACTION_BAR_OVERLAY) {
Log.i(TAG, "You should now use the AppCompatDelegate.FEATURE_SUPPORT_ACTION_BAR_OVERLAY"
+ " id when requesting this feature.");
return FEATURE_SUPPORT_ACTION_BAR_OVERLAY;
}
// Else we'll just return the original id
return featureId;
}
ViewGroup getSubDecor() {
return mSubDecor;
}
void dismissPopups() {
if (mDecorContentParent != null) {
mDecorContentParent.dismissPopups();
}
if (mActionModePopup != null) {
mWindow.getDecorView().removeCallbacks(mShowActionModePopup);
if (mActionModePopup.isShowing()) {
try {
mActionModePopup.dismiss();
} catch (IllegalArgumentException e) {
// Pre-v18, there are times when the Window will remove the popup before us.
// In these cases we need to swallow the resulting exception.
}
}
mActionModePopup = null;
}
endOnGoingFadeAnimation();
PanelFeatureState st = getPanelState(FEATURE_OPTIONS_PANEL, false);
if (st != null && st.menu != null) {
st.menu.close();
}
}
@Override
public boolean applyDayNight() {
return applyDayNight(true, null);
}
private boolean applyDayNight(final boolean allowRecreation,
@Nullable Configuration baseConfiguration) {
if (mIsDestroyed) {
// If we're destroyed, ignore the call
return false;
}
@NightMode final int nightMode = calculateNightMode();
@ApplyableNightMode final int modeToApply = mapNightMode(nightMode);
final boolean applied = updateForNightMode(modeToApply, allowRecreation, baseConfiguration);
if (nightMode == MODE_NIGHT_AUTO_TIME) {
getAutoTimeNightModeManager().setup();
} else if (mAutoTimeNightModeManager != null) {
// Make sure we clean up the existing manager
mAutoTimeNightModeManager.cleanup();
}
if (nightMode == MODE_NIGHT_AUTO_BATTERY) {
getAutoBatteryNightModeManager().setup();
} else if (mAutoBatteryNightModeManager != null) {
// Make sure we clean up the existing manager
mAutoBatteryNightModeManager.cleanup();
}
return applied;
}
@Override
public void setLocalNightMode(@NightMode int mode) {
if (mLocalNightMode != mode) {
mLocalNightMode = mode;
applyDayNight();
}
}
@Override
public int getLocalNightMode() {
return mLocalNightMode;
}
@ApplyableNightMode
int mapNightMode(@NightMode final int mode) {
switch (mode) {
case MODE_NIGHT_NO:
case MODE_NIGHT_YES:
case MODE_NIGHT_FOLLOW_SYSTEM:
// $FALLTHROUGH since these are all valid modes to return
return mode;
case MODE_NIGHT_AUTO_TIME:
if (Build.VERSION.SDK_INT >= 23) {
UiModeManager uiModeManager = mContext.getSystemService(UiModeManager.class);
if (uiModeManager.getNightMode() == UiModeManager.MODE_NIGHT_AUTO) {
// If we're set to AUTO and the system's auto night mode is already enabled,
// we'll just let the system handle it by returning FOLLOW_SYSTEM
return MODE_NIGHT_FOLLOW_SYSTEM;
}
}
return getAutoTimeNightModeManager().getApplyableNightMode();
case MODE_NIGHT_AUTO_BATTERY:
return getAutoBatteryNightModeManager().getApplyableNightMode();
case MODE_NIGHT_UNSPECIFIED:
// If we don't have a mode specified, let the system handle it
return MODE_NIGHT_FOLLOW_SYSTEM;
default:
throw new IllegalStateException("Unknown value set for night mode. Please use one"
+ " of the MODE_NIGHT values from AppCompatDelegate.");
}
}
@NightMode
private int calculateNightMode() {
return mLocalNightMode != MODE_NIGHT_UNSPECIFIED ? mLocalNightMode : getDefaultNightMode();
}
/**
* Updates the {@link Resources} configuration {@code uiMode} with the
* chosen {@code UI_MODE_NIGHT} value.
*
* @param mode The new night mode to apply
* @param allowRecreation whether to attempt activity recreate
* @param baseConfiguration the base configuration to use, if any
* @return true if an action has been taken (recreation, resources updating, etc)
*/
private boolean updateForNightMode(@ApplyableNightMode final int mode,
final boolean allowRecreation, @Nullable Configuration baseConfiguration) {
boolean handled = false;
final int applicationNightMode = mContext.getApplicationContext()
.getResources().getConfiguration().uiMode & Configuration.UI_MODE_NIGHT_MASK;
int newNightMode;
switch (mode) {
case MODE_NIGHT_YES:
newNightMode = Configuration.UI_MODE_NIGHT_YES;
break;
case MODE_NIGHT_NO:
newNightMode = Configuration.UI_MODE_NIGHT_NO;
break;
default:
case MODE_NIGHT_FOLLOW_SYSTEM:
// If we're following the system, we just use the system default from the
// application context
newNightMode = applicationNightMode;
break;
}
final boolean activityHandlingUiMode = isActivityManifestHandlingUiMode();
if ((sAlwaysOverrideConfiguration || newNightMode != applicationNightMode)
&& !activityHandlingUiMode
&& Build.VERSION.SDK_INT >= 17
&& !mBaseContextAttached
&& mHost instanceof android.view.ContextThemeWrapper) {
// If we're here then we can try and apply an override configuration on the Context.
final Configuration conf = new Configuration(baseConfiguration);
conf.uiMode = newNightMode | (conf.uiMode & ~Configuration.UI_MODE_NIGHT_MASK);
try {
if (DEBUG) {
Log.d(TAG, "updateForNightMode. Applying override config");
}
((android.view.ContextThemeWrapper) mHost).applyOverrideConfiguration(conf);
handled = true;
} catch (IllegalStateException e) {
// applyOverrideConfiguration throws an IllegalStateException if its resources
// have already been created. Since there's no way to check this beforehand we
// just have to try it and catch the exception. We only log if we're actually
// trying to apply a uiMode configuration though.
if (newNightMode != applicationNightMode) {
Log.w(TAG, "updateForNightMode. Calling applyOverrideConfiguration() failed"
+ " with an exception. Will fall back to using"
+ " Resources.updateConfiguration()", e);
}
handled = false;
}
}
final int currentNightMode = mContext.getResources().getConfiguration().uiMode
& Configuration.UI_MODE_NIGHT_MASK;
if (!handled
&& currentNightMode != newNightMode
&& allowRecreation
&& !activityHandlingUiMode
&& mBaseContextAttached
&& (Build.VERSION.SDK_INT >= 17 || mCreated)
&& mHost instanceof Activity) {
// If we're an attached Activity, we can recreate to apply
// The SDK_INT check above is because applyOverrideConfiguration only exists on
// API 17+, so we don't want to get into an loop of infinite recreations.
// On < API 17 we need to use updateConfiguration before we're 'created'
if (DEBUG) {
Log.d(TAG, "updateForNightMode. Recreating Activity");
}
ActivityCompat.recreate((Activity) mHost);
handled = true;
}
if (!handled && currentNightMode != newNightMode) {
// Else we need to use the updateConfiguration path
if (DEBUG) {
Log.d(TAG, "updateForNightMode. Updating resources config");
}
updateResourcesConfigurationForNightMode(newNightMode, activityHandlingUiMode,
baseConfiguration);
handled = true;
}
if (DEBUG && !handled) {
Log.d(TAG, "updateForNightMode. Skipping. Night mode: " + mode);
}
// Notify the activity of the night mode. We only notify if we handled the change,
// or the Activity is set to handle uiMode changes
if (handled && mHost instanceof AppCompatActivity) {
((AppCompatActivity) mHost).onNightModeChanged(mode);
}
return handled;
}
private void updateResourcesConfigurationForNightMode(
final int uiModeNightModeValue, final boolean callOnConfigChange,
@Nullable Configuration baseConfiguration) {
// If the Activity is not set to handle uiMode config changes we will
// update the Resources with a new Configuration with an updated UI Mode
final Resources res = mContext.getResources();
final Configuration conf = new Configuration(res.getConfiguration());
if (baseConfiguration != null) {
conf.updateFrom(baseConfiguration);
}
conf.uiMode = uiModeNightModeValue
| (res.getConfiguration().uiMode & ~Configuration.UI_MODE_NIGHT_MASK);
res.updateConfiguration(conf, null);
// We may need to flush the Resources' drawable cache due to framework bugs.
if (Build.VERSION.SDK_INT < 26) {
ResourcesFlusher.flush(res);
}
if (mThemeResId != 0) {
// We need to re-apply the theme so that it reflected the new
// configuration
mContext.setTheme(mThemeResId);
if (Build.VERSION.SDK_INT >= 23) {
// On M+ setTheme only applies if the themeResId actually changes,
// since we have no way to publicly check what the Theme's current
// themeResId is, we just manually apply it anyway. Most of the time
// this is what we need anyway (since the themeResId does not
// often change)
mContext.getTheme().applyStyle(mThemeResId, true);
}
}
if (callOnConfigChange && mHost instanceof Activity) {
final Activity activity = (Activity) mHost;
if (activity instanceof LifecycleOwner) {
// If the Activity is a LifecyleOwner, check that it is at least started
Lifecycle lifecycle = ((LifecycleOwner) activity).getLifecycle();
if (lifecycle.getCurrentState().isAtLeast(Lifecycle.State.STARTED)) {
activity.onConfigurationChanged(conf);
}
} else {
// Otherwise we'll fallback to our internal started flag.
if (mStarted) {
activity.onConfigurationChanged(conf);
}
}
}
}
/**
* @hide
*/
@NonNull
@RestrictTo(LIBRARY)
final AutoNightModeManager getAutoTimeNightModeManager() {
if (mAutoTimeNightModeManager == null) {
mAutoTimeNightModeManager = new AutoTimeNightModeManager(
TwilightManager.getInstance(mContext));
}
return mAutoTimeNightModeManager;
}
private AutoNightModeManager getAutoBatteryNightModeManager() {
if (mAutoBatteryNightModeManager == null) {
mAutoBatteryNightModeManager = new AutoBatteryNightModeManager(mContext);
}
return mAutoBatteryNightModeManager;
}
private boolean isActivityManifestHandlingUiMode() {
if (!mActivityHandlesUiModeChecked && mHost instanceof Activity) {
final PackageManager pm = mContext.getPackageManager();
if (pm == null) {
// If we don't have a PackageManager, return false. Don't set
// the checked flag though so we still check again later
return false;
}
try {
final ActivityInfo info = pm.getActivityInfo(
new ComponentName(mContext, mHost.getClass()), 0);
mActivityHandlesUiMode = info != null
&& (info.configChanges & ActivityInfo.CONFIG_UI_MODE) != 0;
} catch (PackageManager.NameNotFoundException e) {
// This shouldn't happen but let's not crash because of it, we'll just log and
// return false (since most apps won't be handling it)
Log.d(TAG, "Exception while getting ActivityInfo", e);
mActivityHandlesUiMode = false;
}
}
// Flip the checked flag so we don't check again
mActivityHandlesUiModeChecked = true;
return mActivityHandlesUiMode;
}
/**
* Clears out internal reference when the action mode is destroyed.
*/
class ActionModeCallbackWrapperV9 implements ActionMode.Callback {
private ActionMode.Callback mWrapped;
public ActionModeCallbackWrapperV9(ActionMode.Callback wrapped) {
mWrapped = wrapped;
}
@Override
public boolean onCreateActionMode(ActionMode mode, Menu menu) {
return mWrapped.onCreateActionMode(mode, menu);
}
@Override
public boolean onPrepareActionMode(ActionMode mode, Menu menu) {
return mWrapped.onPrepareActionMode(mode, menu);
}
@Override
public boolean onActionItemClicked(ActionMode mode, MenuItem item) {
return mWrapped.onActionItemClicked(mode, item);
}
@Override
public void onDestroyActionMode(ActionMode mode) {
mWrapped.onDestroyActionMode(mode);
if (mActionModePopup != null) {
mWindow.getDecorView().removeCallbacks(mShowActionModePopup);
}
if (mActionModeView != null) {
endOnGoingFadeAnimation();
mFadeAnim = ViewCompat.animate(mActionModeView).alpha(0f);
mFadeAnim.setListener(new ViewPropertyAnimatorListenerAdapter() {
@Override
public void onAnimationEnd(View view) {
mActionModeView.setVisibility(View.GONE);
if (mActionModePopup != null) {
mActionModePopup.dismiss();
} else if (mActionModeView.getParent() instanceof View) {
ViewCompat.requestApplyInsets((View) mActionModeView.getParent());
}
mActionModeView.removeAllViews();
mFadeAnim.setListener(null);
mFadeAnim = null;
}
});
}
if (mAppCompatCallback != null) {
mAppCompatCallback.onSupportActionModeFinished(mActionMode);
}
mActionMode = null;
}
}
private final class PanelMenuPresenterCallback implements MenuPresenter.Callback {
PanelMenuPresenterCallback() {
}
@Override
public void onCloseMenu(MenuBuilder menu, boolean allMenusAreClosing) {
final Menu parentMenu = menu.getRootMenu();
final boolean isSubMenu = parentMenu != menu;
final PanelFeatureState panel = findMenuPanel(isSubMenu ? parentMenu : menu);
if (panel != null) {
if (isSubMenu) {
callOnPanelClosed(panel.featureId, panel, parentMenu);
closePanel(panel, true);
} else {
// Close the panel and only do the callback if the menu is being
// closed completely, not if opening a sub menu
closePanel(panel, allMenusAreClosing);
}
}
}
@Override
public boolean onOpenSubMenu(MenuBuilder subMenu) {
if (subMenu == null && mHasActionBar) {
Window.Callback cb = getWindowCallback();
if (cb != null && !mIsDestroyed) {
cb.onMenuOpened(FEATURE_SUPPORT_ACTION_BAR, subMenu);
}
}
return true;
}
}
private final class ActionMenuPresenterCallback implements MenuPresenter.Callback {
ActionMenuPresenterCallback() {
}
@Override
public boolean onOpenSubMenu(MenuBuilder subMenu) {
Window.Callback cb = getWindowCallback();
if (cb != null) {
cb.onMenuOpened(FEATURE_SUPPORT_ACTION_BAR, subMenu);
}
return true;
}
@Override
public void onCloseMenu(MenuBuilder menu, boolean allMenusAreClosing) {
checkCloseActionMenu(menu);
}
}
protected static final class PanelFeatureState {
/** Feature ID for this panel. */
int featureId;
int background;
int gravity;
int x;
int y;
int windowAnimations;
/** Dynamic state of the panel. */
ViewGroup decorView;
/** The panel that we are actually showing. */
View shownPanelView;
/** The panel that was returned by onCreatePanelView(). */
View createdPanelView;
/** Use {@link #setMenu} to set this. */
MenuBuilder menu;
ListMenuPresenter listMenuPresenter;
Context listPresenterContext;
/**
* Whether the panel has been prepared (see
* {@link #preparePanel}).
*/
boolean isPrepared;
/**
* Whether an item's action has been performed. This happens in obvious
* scenarios (user clicks on menu item), but can also happen with
* chording menu+(shortcut key).
*/
boolean isHandled;
boolean isOpen;
public boolean qwertyMode;
boolean refreshDecorView;
boolean refreshMenuContent;
boolean wasLastOpen;
/**
* Contains the state of the menu when told to freeze.
*/
Bundle frozenMenuState;
/**
* Contains the state of associated action views when told to freeze.
* These are saved across invalidations.
*/
Bundle frozenActionViewState;
PanelFeatureState(int featureId) {
this.featureId = featureId;
refreshDecorView = false;
}
public boolean hasPanelItems() {
if (shownPanelView == null) return false;
if (createdPanelView != null) return true;
return listMenuPresenter.getAdapter().getCount() > 0;
}
/**
* Unregister and free attached MenuPresenters. They will be recreated as needed.
*/
public void clearMenuPresenters() {
if (menu != null) {
menu.removeMenuPresenter(listMenuPresenter);
}
listMenuPresenter = null;
}
void setStyle(Context context) {
final TypedValue outValue = new TypedValue();
final Resources.Theme widgetTheme = context.getResources().newTheme();
widgetTheme.setTo(context.getTheme());
// First apply the actionBarPopupTheme
widgetTheme.resolveAttribute(R.attr.actionBarPopupTheme, outValue, true);
if (outValue.resourceId != 0) {
widgetTheme.applyStyle(outValue.resourceId, true);
}
// Now apply the panelMenuListTheme
widgetTheme.resolveAttribute(R.attr.panelMenuListTheme, outValue, true);
if (outValue.resourceId != 0) {
widgetTheme.applyStyle(outValue.resourceId, true);
} else {
widgetTheme.applyStyle(R.style.Theme_AppCompat_CompactMenu, true);
}
context = new ContextThemeWrapper(context, 0);
context.getTheme().setTo(widgetTheme);
listPresenterContext = context;
TypedArray a = context.obtainStyledAttributes(R.styleable.AppCompatTheme);
background = a.getResourceId(
R.styleable.AppCompatTheme_panelBackground, 0);
windowAnimations = a.getResourceId(
R.styleable.AppCompatTheme_android_windowAnimationStyle, 0);
a.recycle();
}
void setMenu(MenuBuilder menu) {
if (menu == this.menu) return;
if (this.menu != null) {
this.menu.removeMenuPresenter(listMenuPresenter);
}
this.menu = menu;
if (menu != null) {
if (listMenuPresenter != null) menu.addMenuPresenter(listMenuPresenter);
}
}
MenuView getListMenuView(MenuPresenter.Callback cb) {
if (menu == null) return null;
if (listMenuPresenter == null) {
listMenuPresenter = new ListMenuPresenter(listPresenterContext,
R.layout.abc_list_menu_item_layout);
listMenuPresenter.setCallback(cb);
menu.addMenuPresenter(listMenuPresenter);
}
MenuView result = listMenuPresenter.getMenuView(decorView);
return result;
}
Parcelable onSaveInstanceState() {
SavedState savedState = new SavedState();
savedState.featureId = featureId;
savedState.isOpen = isOpen;
if (menu != null) {
savedState.menuState = new Bundle();
menu.savePresenterStates(savedState.menuState);
}
return savedState;
}
void onRestoreInstanceState(Parcelable state) {
SavedState savedState = (SavedState) state;
featureId = savedState.featureId;
wasLastOpen = savedState.isOpen;
frozenMenuState = savedState.menuState;
shownPanelView = null;
decorView = null;
}
void applyFrozenState() {
if (menu != null && frozenMenuState != null) {
menu.restorePresenterStates(frozenMenuState);
frozenMenuState = null;
}
}
@SuppressLint("BanParcelableUsage")
private static class SavedState implements Parcelable {
int featureId;
boolean isOpen;
Bundle menuState;
SavedState() {
}
@Override
public int describeContents() {
return 0;
}
@Override
public void writeToParcel(Parcel dest, int flags) {
dest.writeInt(featureId);
dest.writeInt(isOpen ? 1 : 0);
if (isOpen) {
dest.writeBundle(menuState);
}
}
static SavedState readFromParcel(Parcel source, ClassLoader loader) {
SavedState savedState = new SavedState();
savedState.featureId = source.readInt();
savedState.isOpen = source.readInt() == 1;
if (savedState.isOpen) {
savedState.menuState = source.readBundle(loader);
}
return savedState;
}
public static final Creator<SavedState> CREATOR = new ClassLoaderCreator<SavedState>() {
@Override
public SavedState createFromParcel(Parcel in, ClassLoader loader) {
return readFromParcel(in, loader);
}
@Override
public SavedState createFromParcel(Parcel in) {
return readFromParcel(in, null);
}
@Override
public SavedState[] newArray(int size) {
return new SavedState[size];
}
};
}
}
private class ListMenuDecorView extends ContentFrameLayout {
public ListMenuDecorView(Context context) {
super(context);
}
@Override
public boolean dispatchKeyEvent(KeyEvent event) {
return AppCompatDelegateImpl.this.dispatchKeyEvent(event)
|| super.dispatchKeyEvent(event);
}
@Override
public boolean onInterceptTouchEvent(MotionEvent event) {
int action = event.getAction();
if (action == MotionEvent.ACTION_DOWN) {
int x = (int) event.getX();
int y = (int) event.getY();
if (isOutOfBounds(x, y)) {
closePanel(Window.FEATURE_OPTIONS_PANEL);
return true;
}
}
return super.onInterceptTouchEvent(event);
}
@Override
public void setBackgroundResource(int resid) {
setBackgroundDrawable(AppCompatResources.getDrawable(getContext(), resid));
}
private boolean isOutOfBounds(int x, int y) {
return x < -5 || y < -5 || x > (getWidth() + 5) || y > (getHeight() + 5);
}
}
class AppCompatWindowCallback extends WindowCallbackWrapper {
AppCompatWindowCallback(Window.Callback callback) {
super(callback);
}
@Override
public boolean dispatchKeyEvent(KeyEvent event) {
return AppCompatDelegateImpl.this.dispatchKeyEvent(event)
|| super.dispatchKeyEvent(event);
}
@Override
public boolean dispatchKeyShortcutEvent(KeyEvent event) {
return super.dispatchKeyShortcutEvent(event)
|| AppCompatDelegateImpl.this.onKeyShortcut(event.getKeyCode(), event);
}
@Override
public boolean onCreatePanelMenu(int featureId, Menu menu) {
if (featureId == Window.FEATURE_OPTIONS_PANEL && !(menu instanceof MenuBuilder)) {
// If this is an options menu but it's not an AppCompat menu, we eat the event
// and return false
return false;
}
return super.onCreatePanelMenu(featureId, menu);
}
@Override
public void onContentChanged() {
// We purposely do not propagate this call as this is called when we install
// our sub-decor rather than the user's content
}
@Override
public boolean onPreparePanel(int featureId, View view, Menu menu) {
final MenuBuilder mb = menu instanceof MenuBuilder ? (MenuBuilder) menu : null;
if (featureId == Window.FEATURE_OPTIONS_PANEL && mb == null) {
// If this is an options menu but it's not an AppCompat menu, we eat the event
// and return false
return false;
}
// On ICS and below devices, onPreparePanel calls menu.hasVisibleItems() to determine
// if a panel is prepared. This interferes with any initially invisible items, which
// are later made visible. We workaround it by making hasVisibleItems() always
// return true during the onPreparePanel call.
if (mb != null) {
mb.setOverrideVisibleItems(true);
}
final boolean handled = super.onPreparePanel(featureId, view, menu);
if (mb != null) {
mb.setOverrideVisibleItems(false);
}
return handled;
}
@Override
public boolean onMenuOpened(int featureId, Menu menu) {
super.onMenuOpened(featureId, menu);
AppCompatDelegateImpl.this.onMenuOpened(featureId);
return true;
}
@Override
public void onPanelClosed(int featureId, Menu menu) {
super.onPanelClosed(featureId, menu);
AppCompatDelegateImpl.this.onPanelClosed(featureId);
}
@Override
public android.view.ActionMode onWindowStartingActionMode(
android.view.ActionMode.Callback callback) {
if (Build.VERSION.SDK_INT >= 23) {
// No-op on API 23+
return null;
}
// We wrap in a support action mode on v14+ if enabled
if (isHandleNativeActionModesEnabled()) {
return startAsSupportActionMode(callback);
}
// Else, let the call fall through to the wrapped callback
return super.onWindowStartingActionMode(callback);
}
/**
* Wrap the framework {@link android.view.ActionMode.Callback} in a support action mode and
* let AppCompat display it.
*/
final android.view.ActionMode startAsSupportActionMode(
android.view.ActionMode.Callback callback) {
// Wrap the callback as a v7 ActionMode.Callback
final SupportActionModeWrapper.CallbackWrapper callbackWrapper =
new SupportActionModeWrapper.CallbackWrapper(mContext, callback);
// Try and start a support action mode using the wrapped callback
final androidx.appcompat.view.ActionMode supportActionMode =
startSupportActionMode(callbackWrapper);
if (supportActionMode != null) {
// If we received a support action mode, wrap and return it
return callbackWrapper.getActionModeWrapper(supportActionMode);
}
return null;
}
@Override
@RequiresApi(23)
public android.view.ActionMode onWindowStartingActionMode(
android.view.ActionMode.Callback callback, int type) {
if (isHandleNativeActionModesEnabled()) {
switch (type) {
case android.view.ActionMode.TYPE_PRIMARY:
// We only take over if the type is TYPE_PRIMARY
return startAsSupportActionMode(callback);
}
}
// Else, let the call fall through to the wrapped callback
return super.onWindowStartingActionMode(callback, type);
}
@Override
@RequiresApi(24)
public void onProvideKeyboardShortcuts(
List<KeyboardShortcutGroup> data, Menu menu, int deviceId) {
final PanelFeatureState panel = getPanelState(Window.FEATURE_OPTIONS_PANEL, true);
if (panel != null && panel.menu != null) {
// The menu provided is one created by PhoneWindow which we don't actually use.
// Instead we'll pass through our own...
super.onProvideKeyboardShortcuts(data, panel.menu, deviceId);
} else {
// If we don't have a menu, jump pass through the original instead
super.onProvideKeyboardShortcuts(data, menu, deviceId);
}
}
}
/**
* @hide
*/
@VisibleForTesting
@RestrictTo(LIBRARY)
abstract class AutoNightModeManager {
private BroadcastReceiver mReceiver;
@ApplyableNightMode
abstract int getApplyableNightMode();
abstract void onChange();
void setup() {
cleanup();
final IntentFilter filter = createIntentFilterForBroadcastReceiver();
if (filter == null || filter.countActions() == 0) {
// Null or empty IntentFilter, skip
return;
}
if (mReceiver == null) {
mReceiver = new BroadcastReceiver() {
@Override
public void onReceive(Context context, Intent intent) {
onChange();
}
};
}
mContext.registerReceiver(mReceiver, filter);
}
@Nullable
abstract IntentFilter createIntentFilterForBroadcastReceiver();
void cleanup() {
if (mReceiver != null) {
try {
mContext.unregisterReceiver(mReceiver);
} catch (IllegalArgumentException e) {
// If the receiver has already been unregistered, unregisterReceiver() will
// throw an exception. Just ignore and carry-on...
}
mReceiver = null;
}
}
boolean isListening() {
return mReceiver != null;
}
}
private class AutoTimeNightModeManager extends AutoNightModeManager {
private final TwilightManager mTwilightManager;
AutoTimeNightModeManager(@NonNull TwilightManager twilightManager) {
mTwilightManager = twilightManager;
}
@ApplyableNightMode
@Override
public int getApplyableNightMode() {
return mTwilightManager.isNight() ? MODE_NIGHT_YES : MODE_NIGHT_NO;
}
@Override
public void onChange() {
applyDayNight();
}
@Override
IntentFilter createIntentFilterForBroadcastReceiver() {
IntentFilter filter = new IntentFilter();
filter.addAction(Intent.ACTION_TIME_CHANGED);
filter.addAction(Intent.ACTION_TIMEZONE_CHANGED);
filter.addAction(Intent.ACTION_TIME_TICK);
return filter;
}
}
private class AutoBatteryNightModeManager extends AutoNightModeManager {
private final PowerManager mPowerManager;
AutoBatteryNightModeManager(@NonNull Context context) {
mPowerManager = (PowerManager) context.getSystemService(Context.POWER_SERVICE);
}
@ApplyableNightMode
@Override
public int getApplyableNightMode() {
if (Build.VERSION.SDK_INT >= 21) {
return mPowerManager.isPowerSaveMode() ? MODE_NIGHT_YES : MODE_NIGHT_NO;
}
return MODE_NIGHT_NO;
}
@Override
public void onChange() {
applyDayNight();
}
@Override
IntentFilter createIntentFilterForBroadcastReceiver() {
if (Build.VERSION.SDK_INT >= 21) {
IntentFilter filter = new IntentFilter();
filter.addAction(PowerManager.ACTION_POWER_SAVE_MODE_CHANGED);
return filter;
}
return null;
}
}
@Override
public final ActionBarDrawerToggle.Delegate getDrawerToggleDelegate() {
return new ActionBarDrawableToggleImpl();
}
private class ActionBarDrawableToggleImpl implements ActionBarDrawerToggle.Delegate {
ActionBarDrawableToggleImpl() {
}
@Override
public Drawable getThemeUpIndicator() {
final TintTypedArray a = TintTypedArray.obtainStyledAttributes(
getActionBarThemedContext(), null, new int[]{ R.attr.homeAsUpIndicator });
final Drawable result = a.getDrawable(0);
a.recycle();
return result;
}
@Override
public Context getActionBarThemedContext() {
return AppCompatDelegateImpl.this.getActionBarThemedContext();
}
@Override
public boolean isNavigationVisible() {
final ActionBar ab = getSupportActionBar();
return ab != null && (ab.getDisplayOptions() & ActionBar.DISPLAY_HOME_AS_UP) != 0;
}
@Override
public void setActionBarUpIndicator(Drawable upDrawable, int contentDescRes) {
ActionBar ab = getSupportActionBar();
if (ab != null) {
ab.setHomeAsUpIndicator(upDrawable);
ab.setHomeActionContentDescription(contentDescRes);
}
}
@Override
public void setActionBarDescription(int contentDescRes) {
ActionBar ab = getSupportActionBar();
if (ab != null) {
ab.setHomeActionContentDescription(contentDescRes);
}
}
}
}