|
@@ -0,0 +1,674 @@
|
|
|
|
+package com.quyunshuo.androidbaseframemvvm.base.utils;
|
|
|
|
+
|
|
|
|
+import android.annotation.SuppressLint;
|
|
|
|
+import android.app.Activity;
|
|
|
|
+import android.content.Context;
|
|
|
|
+import android.content.res.Resources;
|
|
|
|
+import android.graphics.Color;
|
|
|
|
+import android.graphics.Point;
|
|
|
|
+import android.os.Build;
|
|
|
|
+import android.util.TypedValue;
|
|
|
|
+import android.view.Display;
|
|
|
|
+import android.view.KeyCharacterMap;
|
|
|
|
+import android.view.KeyEvent;
|
|
|
|
+import android.view.View;
|
|
|
|
+import android.view.ViewConfiguration;
|
|
|
|
+import android.view.ViewGroup;
|
|
|
|
+import android.view.ViewGroup.MarginLayoutParams;
|
|
|
|
+import android.view.Window;
|
|
|
|
+import android.view.WindowManager;
|
|
|
|
+
|
|
|
|
+import androidx.annotation.ColorInt;
|
|
|
|
+import androidx.annotation.NonNull;
|
|
|
|
+import androidx.annotation.RequiresApi;
|
|
|
|
+import androidx.annotation.RequiresPermission;
|
|
|
|
+
|
|
|
|
+import java.lang.reflect.Method;
|
|
|
|
+
|
|
|
|
+import static android.Manifest.permission.EXPAND_STATUS_BAR;
|
|
|
|
+
|
|
|
|
+import com.quyunshuo.androidbaseframemvvm.base.BaseApplication;
|
|
|
|
+
|
|
|
|
+/**
|
|
|
|
+ * 各种栏的工具类
|
|
|
|
+ * <p>
|
|
|
|
+ * getStatusBarHeight : 获取状态栏高度(px)
|
|
|
|
+ * setStatusBarVisibility : 设置状态栏是否可见
|
|
|
|
+ * isStatusBarVisible : 判断状态栏是否可见
|
|
|
|
+ * setStatusBarLightMode : 设置状态栏是否为浅色模式
|
|
|
|
+ * isStatusBarLightMode : 判断状态栏是否为浅色模式
|
|
|
|
+ * addMarginTopEqualStatusBarHeight : 为 view 增加 MarginTop 为状态栏高度
|
|
|
|
+ * subtractMarginTopEqualStatusBarHeight: 为 view 减少 MarginTop 为状态栏高度
|
|
|
|
+ * setStatusBarColor : 设置状态栏颜色
|
|
|
|
+ * setStatusBarColor4Drawer : 为 DrawerLayout 设置状态栏颜色
|
|
|
|
+ * transparentStatusBar : 透明状态栏
|
|
|
|
+ * getActionBarHeight : 获取 ActionBar 高度
|
|
|
|
+ * setNotificationBarVisibility : 设置通知栏是否可见
|
|
|
|
+ * getNavBarHeight : 获取导航栏高度
|
|
|
|
+ * setNavBarVisibility : 设置导航栏是否可见
|
|
|
|
+ * isNavBarVisible : 判断导航栏是否可见
|
|
|
|
+ * setNavBarColor : 设置导航栏颜色
|
|
|
|
+ * getNavBarColor : 获取导航栏颜色
|
|
|
|
+ * isSupportNavBar : 判断是否支持导航栏
|
|
|
|
+ * setNavBarLightMode : 设置导航栏是否为浅色模式
|
|
|
|
+ * isNavBarLightMode : 判断导航栏是否为浅色模式
|
|
|
|
+ *
|
|
|
|
+ * @author Qu Yunshuo
|
|
|
|
+ * @since 2021/7/15 10:42 上午
|
|
|
|
+ */
|
|
|
|
+public final class BarUtils {
|
|
|
|
+
|
|
|
|
+ ///////////////////////////////////////////////////////////////////////////
|
|
|
|
+ // status bar
|
|
|
|
+ ///////////////////////////////////////////////////////////////////////////
|
|
|
|
+
|
|
|
|
+ private static final String TAG_STATUS_BAR = "TAG_STATUS_BAR";
|
|
|
|
+ private static final String TAG_OFFSET = "TAG_OFFSET";
|
|
|
|
+ private static final int KEY_OFFSET = -123;
|
|
|
|
+
|
|
|
|
+ private BarUtils() {
|
|
|
|
+ throw new UnsupportedOperationException("u can't instantiate me...");
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Return the status bar's height.
|
|
|
|
+ *
|
|
|
|
+ * @return the status bar's height
|
|
|
|
+ */
|
|
|
|
+ public static int getStatusBarHeight() {
|
|
|
|
+ Resources resources = BaseApplication.context.getResources();
|
|
|
|
+ int resourceId = resources.getIdentifier("status_bar_height", "dimen", "android");
|
|
|
|
+ return resources.getDimensionPixelSize(resourceId);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Set the status bar's visibility.
|
|
|
|
+ *
|
|
|
|
+ * @param activity The activity.
|
|
|
|
+ * @param isVisible True to set status bar visible, false otherwise.
|
|
|
|
+ */
|
|
|
|
+ public static void setStatusBarVisibility(@NonNull final Activity activity,
|
|
|
|
+ final boolean isVisible) {
|
|
|
|
+ setStatusBarVisibility(activity.getWindow(), isVisible);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Set the status bar's visibility.
|
|
|
|
+ *
|
|
|
|
+ * @param window The window.
|
|
|
|
+ * @param isVisible True to set status bar visible, false otherwise.
|
|
|
|
+ */
|
|
|
|
+ public static void setStatusBarVisibility(@NonNull final Window window,
|
|
|
|
+ final boolean isVisible) {
|
|
|
|
+ if (isVisible) {
|
|
|
|
+ window.clearFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN);
|
|
|
|
+ showStatusBarView(window);
|
|
|
|
+ addMarginTopEqualStatusBarHeight(window);
|
|
|
|
+ } else {
|
|
|
|
+ window.addFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN);
|
|
|
|
+ hideStatusBarView(window);
|
|
|
|
+ subtractMarginTopEqualStatusBarHeight(window);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Return whether the status bar is visible.
|
|
|
|
+ *
|
|
|
|
+ * @param activity The activity.
|
|
|
|
+ * @return {@code true}: yes<br>{@code false}: no
|
|
|
|
+ */
|
|
|
|
+ public static boolean isStatusBarVisible(@NonNull final Activity activity) {
|
|
|
|
+ int flags = activity.getWindow().getAttributes().flags;
|
|
|
|
+ return (flags & WindowManager.LayoutParams.FLAG_FULLSCREEN) == 0;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Set the status bar's light mode.
|
|
|
|
+ *
|
|
|
|
+ * @param activity The activity.
|
|
|
|
+ * @param isLightMode True to set status bar light mode, false otherwise.
|
|
|
|
+ */
|
|
|
|
+ public static void setStatusBarLightMode(@NonNull final Activity activity,
|
|
|
|
+ final boolean isLightMode) {
|
|
|
|
+ setStatusBarLightMode(activity.getWindow(), isLightMode);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Set the status bar's light mode.
|
|
|
|
+ *
|
|
|
|
+ * @param window The window.
|
|
|
|
+ * @param isLightMode True to set status bar light mode, false otherwise.
|
|
|
|
+ */
|
|
|
|
+ public static void setStatusBarLightMode(@NonNull final Window window,
|
|
|
|
+ final boolean isLightMode) {
|
|
|
|
+ if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
|
|
|
|
+ View decorView = window.getDecorView();
|
|
|
|
+ int vis = decorView.getSystemUiVisibility();
|
|
|
|
+ if (isLightMode) {
|
|
|
|
+ vis |= View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
|
|
|
|
+ } else {
|
|
|
|
+ vis &= ~View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
|
|
|
|
+ }
|
|
|
|
+ decorView.setSystemUiVisibility(vis);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Is the status bar light mode.
|
|
|
|
+ *
|
|
|
|
+ * @param activity The activity.
|
|
|
|
+ * @return {@code true}: yes<br>{@code false}: no
|
|
|
|
+ */
|
|
|
|
+ public static boolean isStatusBarLightMode(@NonNull final Activity activity) {
|
|
|
|
+ return isStatusBarLightMode(activity.getWindow());
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Is the status bar light mode.
|
|
|
|
+ *
|
|
|
|
+ * @param window The window.
|
|
|
|
+ * @return {@code true}: yes<br>{@code false}: no
|
|
|
|
+ */
|
|
|
|
+ public static boolean isStatusBarLightMode(@NonNull final Window window) {
|
|
|
|
+ if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
|
|
|
|
+ View decorView = window.getDecorView();
|
|
|
|
+ int vis = decorView.getSystemUiVisibility();
|
|
|
|
+ return (vis & View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR) != 0;
|
|
|
|
+ }
|
|
|
|
+ return false;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Add the top margin size equals status bar's height for view.
|
|
|
|
+ *
|
|
|
|
+ * @param view The view.
|
|
|
|
+ */
|
|
|
|
+ public static void addMarginTopEqualStatusBarHeight(@NonNull View view) {
|
|
|
|
+
|
|
|
|
+ view.setTag(TAG_OFFSET);
|
|
|
|
+ Object haveSetOffset = view.getTag(KEY_OFFSET);
|
|
|
|
+ if (haveSetOffset != null && (Boolean) haveSetOffset) return;
|
|
|
|
+ MarginLayoutParams layoutParams = (MarginLayoutParams) view.getLayoutParams();
|
|
|
|
+ layoutParams.setMargins(layoutParams.leftMargin,
|
|
|
|
+ layoutParams.topMargin + getStatusBarHeight(),
|
|
|
|
+ layoutParams.rightMargin,
|
|
|
|
+ layoutParams.bottomMargin);
|
|
|
|
+ view.setTag(KEY_OFFSET, true);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Subtract the top margin size equals status bar's height for view.
|
|
|
|
+ *
|
|
|
|
+ * @param view The view.
|
|
|
|
+ */
|
|
|
|
+ public static void subtractMarginTopEqualStatusBarHeight(@NonNull View view) {
|
|
|
|
+
|
|
|
|
+ Object haveSetOffset = view.getTag(KEY_OFFSET);
|
|
|
|
+ if (haveSetOffset == null || !(Boolean) haveSetOffset) return;
|
|
|
|
+ MarginLayoutParams layoutParams = (MarginLayoutParams) view.getLayoutParams();
|
|
|
|
+ layoutParams.setMargins(layoutParams.leftMargin,
|
|
|
|
+ layoutParams.topMargin - getStatusBarHeight(),
|
|
|
|
+ layoutParams.rightMargin,
|
|
|
|
+ layoutParams.bottomMargin);
|
|
|
|
+ view.setTag(KEY_OFFSET, false);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ private static void addMarginTopEqualStatusBarHeight(@NonNull final Window window) {
|
|
|
|
+ View withTag = window.getDecorView().findViewWithTag(TAG_OFFSET);
|
|
|
|
+ if (withTag == null) return;
|
|
|
|
+ addMarginTopEqualStatusBarHeight(withTag);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ private static void subtractMarginTopEqualStatusBarHeight(@NonNull final Window window) {
|
|
|
|
+ View withTag = window.getDecorView().findViewWithTag(TAG_OFFSET);
|
|
|
|
+ if (withTag == null) return;
|
|
|
|
+ subtractMarginTopEqualStatusBarHeight(withTag);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Set the status bar's color.
|
|
|
|
+ *
|
|
|
|
+ * @param activity The activity.
|
|
|
|
+ * @param color The status bar's color.
|
|
|
|
+ */
|
|
|
|
+ public static View setStatusBarColor(@NonNull final Activity activity,
|
|
|
|
+ @ColorInt final int color) {
|
|
|
|
+ return setStatusBarColor(activity, color, false);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Set the status bar's color.
|
|
|
|
+ *
|
|
|
|
+ * @param activity The activity.
|
|
|
|
+ * @param color The status bar's color.
|
|
|
|
+ * @param isDecor True to add fake status bar in DecorView,
|
|
|
|
+ * false to add fake status bar in ContentView.
|
|
|
|
+ */
|
|
|
|
+ public static View setStatusBarColor(@NonNull final Activity activity,
|
|
|
|
+ @ColorInt final int color,
|
|
|
|
+ final boolean isDecor) {
|
|
|
|
+ transparentStatusBar(activity);
|
|
|
|
+ return applyStatusBarColor(activity, color, isDecor);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Set the status bar's color.
|
|
|
|
+ *
|
|
|
|
+ * @param window The window.
|
|
|
|
+ * @param color The status bar's color.
|
|
|
|
+ */
|
|
|
|
+ public static View setStatusBarColor(@NonNull final Window window,
|
|
|
|
+ @ColorInt final int color) {
|
|
|
|
+ return setStatusBarColor(window, color, false);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Set the status bar's color.
|
|
|
|
+ *
|
|
|
|
+ * @param window The window.
|
|
|
|
+ * @param color The status bar's color.
|
|
|
|
+ * @param isDecor True to add fake status bar in DecorView,
|
|
|
|
+ * false to add fake status bar in ContentView.
|
|
|
|
+ */
|
|
|
|
+ public static View setStatusBarColor(@NonNull final Window window,
|
|
|
|
+ @ColorInt final int color,
|
|
|
|
+ final boolean isDecor) {
|
|
|
|
+ transparentStatusBar(window);
|
|
|
|
+ return applyStatusBarColor(window, color, isDecor);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Set the status bar's color.
|
|
|
|
+ *
|
|
|
|
+ * @param fakeStatusBar The fake status bar view.
|
|
|
|
+ * @param color The status bar's color.
|
|
|
|
+ */
|
|
|
|
+ public static void setStatusBarColor(Activity activity, @NonNull final View fakeStatusBar,
|
|
|
|
+ @ColorInt final int color) {
|
|
|
|
+ if (activity == null) return;
|
|
|
|
+ transparentStatusBar(activity);
|
|
|
|
+ fakeStatusBar.setVisibility(View.VISIBLE);
|
|
|
|
+ ViewGroup.LayoutParams layoutParams = fakeStatusBar.getLayoutParams();
|
|
|
|
+ layoutParams.width = ViewGroup.LayoutParams.MATCH_PARENT;
|
|
|
|
+ layoutParams.height = getStatusBarHeight();
|
|
|
|
+ fakeStatusBar.setBackgroundColor(color);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Set the custom status bar.
|
|
|
|
+ *
|
|
|
|
+ * @param fakeStatusBar The fake status bar view.
|
|
|
|
+ */
|
|
|
|
+ public static void setStatusBarCustom(Activity activity, @NonNull final View fakeStatusBar) {
|
|
|
|
+ if (activity == null) return;
|
|
|
|
+ transparentStatusBar(activity);
|
|
|
|
+ fakeStatusBar.setVisibility(View.VISIBLE);
|
|
|
|
+ ViewGroup.LayoutParams layoutParams = fakeStatusBar.getLayoutParams();
|
|
|
|
+ if (layoutParams == null) {
|
|
|
|
+ layoutParams = new ViewGroup.LayoutParams(
|
|
|
|
+ ViewGroup.LayoutParams.MATCH_PARENT,
|
|
|
|
+ getStatusBarHeight()
|
|
|
|
+ );
|
|
|
|
+ fakeStatusBar.setLayoutParams(layoutParams);
|
|
|
|
+ } else {
|
|
|
|
+ layoutParams.width = ViewGroup.LayoutParams.MATCH_PARENT;
|
|
|
|
+ layoutParams.height = getStatusBarHeight();
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ private static View applyStatusBarColor(@NonNull final Activity activity,
|
|
|
|
+ final int color,
|
|
|
|
+ boolean isDecor) {
|
|
|
|
+ return applyStatusBarColor(activity.getWindow(), color, isDecor);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ private static View applyStatusBarColor(@NonNull final Window window,
|
|
|
|
+ final int color,
|
|
|
|
+ boolean isDecor) {
|
|
|
|
+ ViewGroup parent = isDecor ?
|
|
|
|
+ (ViewGroup) window.getDecorView() :
|
|
|
|
+ (ViewGroup) window.findViewById(android.R.id.content);
|
|
|
|
+ View fakeStatusBarView = parent.findViewWithTag(TAG_STATUS_BAR);
|
|
|
|
+ if (fakeStatusBarView != null) {
|
|
|
|
+ if (fakeStatusBarView.getVisibility() == View.GONE) {
|
|
|
|
+ fakeStatusBarView.setVisibility(View.VISIBLE);
|
|
|
|
+ }
|
|
|
|
+ fakeStatusBarView.setBackgroundColor(color);
|
|
|
|
+ } else {
|
|
|
|
+ fakeStatusBarView = createStatusBarView(window.getContext(), color);
|
|
|
|
+ parent.addView(fakeStatusBarView);
|
|
|
|
+ }
|
|
|
|
+ return fakeStatusBarView;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ private static void hideStatusBarView(@NonNull final Activity activity) {
|
|
|
|
+ hideStatusBarView(activity.getWindow());
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ private static void hideStatusBarView(@NonNull final Window window) {
|
|
|
|
+ ViewGroup decorView = (ViewGroup) window.getDecorView();
|
|
|
|
+ View fakeStatusBarView = decorView.findViewWithTag(TAG_STATUS_BAR);
|
|
|
|
+ if (fakeStatusBarView == null) return;
|
|
|
|
+ fakeStatusBarView.setVisibility(View.GONE);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ private static void showStatusBarView(@NonNull final Window window) {
|
|
|
|
+ ViewGroup decorView = (ViewGroup) window.getDecorView();
|
|
|
|
+ View fakeStatusBarView = decorView.findViewWithTag(TAG_STATUS_BAR);
|
|
|
|
+ if (fakeStatusBarView == null) return;
|
|
|
|
+ fakeStatusBarView.setVisibility(View.VISIBLE);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ private static View createStatusBarView(@NonNull final Context context,
|
|
|
|
+ final int color) {
|
|
|
|
+ View statusBarView = new View(context);
|
|
|
|
+ statusBarView.setLayoutParams(new ViewGroup.LayoutParams(
|
|
|
|
+ ViewGroup.LayoutParams.MATCH_PARENT, getStatusBarHeight()));
|
|
|
|
+ statusBarView.setBackgroundColor(color);
|
|
|
|
+ statusBarView.setTag(TAG_STATUS_BAR);
|
|
|
|
+ return statusBarView;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public static void transparentStatusBar(@NonNull final Activity activity) {
|
|
|
|
+ transparentStatusBar(activity.getWindow());
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public static void transparentStatusBar(@NonNull final Window window) {
|
|
|
|
+
|
|
|
|
+ if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
|
|
|
|
+ window.clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
|
|
|
|
+ window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);
|
|
|
|
+ int option = View.SYSTEM_UI_FLAG_LAYOUT_STABLE | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN;
|
|
|
|
+ int vis = window.getDecorView().getSystemUiVisibility();
|
|
|
|
+ window.getDecorView().setSystemUiVisibility(option | vis);
|
|
|
|
+ window.setStatusBarColor(Color.TRANSPARENT);
|
|
|
|
+ } else {
|
|
|
|
+ window.addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ ///////////////////////////////////////////////////////////////////////////
|
|
|
|
+ // action bar
|
|
|
|
+ ///////////////////////////////////////////////////////////////////////////
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Return the action bar's height.
|
|
|
|
+ *
|
|
|
|
+ * @return the action bar's height
|
|
|
|
+ */
|
|
|
|
+ public static int getActionBarHeight() {
|
|
|
|
+ TypedValue tv = new TypedValue();
|
|
|
|
+ if (BaseApplication.context.getTheme().resolveAttribute(android.R.attr.actionBarSize, tv, true)) {
|
|
|
|
+ return TypedValue.complexToDimensionPixelSize(
|
|
|
|
+ tv.data, BaseApplication.context.getResources().getDisplayMetrics()
|
|
|
|
+ );
|
|
|
|
+ }
|
|
|
|
+ return 0;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ ///////////////////////////////////////////////////////////////////////////
|
|
|
|
+ // notification bar
|
|
|
|
+ ///////////////////////////////////////////////////////////////////////////
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Set the notification bar's visibility.
|
|
|
|
+ * <p>Must hold {@code <uses-permission android:name="android.permission.EXPAND_STATUS_BAR" />}</p>
|
|
|
|
+ *
|
|
|
|
+ * @param isVisible True to set notification bar visible, false otherwise.
|
|
|
|
+ */
|
|
|
|
+ @RequiresPermission(EXPAND_STATUS_BAR)
|
|
|
|
+ public static void setNotificationBarVisibility(final boolean isVisible) {
|
|
|
|
+ String methodName;
|
|
|
|
+ if (isVisible) {
|
|
|
|
+ methodName = (Build.VERSION.SDK_INT <= 16) ? "expand" : "expandNotificationsPanel";
|
|
|
|
+ } else {
|
|
|
|
+ methodName = (Build.VERSION.SDK_INT <= 16) ? "collapse" : "collapsePanels";
|
|
|
|
+ }
|
|
|
|
+ invokePanels(methodName);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ private static void invokePanels(final String methodName) {
|
|
|
|
+ try {
|
|
|
|
+ @SuppressLint("WrongConstant")
|
|
|
|
+ Object service = BaseApplication.context.getSystemService("statusbar");
|
|
|
|
+ @SuppressLint("PrivateApi")
|
|
|
|
+ Class<?> statusBarManager = Class.forName("android.app.StatusBarManager");
|
|
|
|
+ Method expand = statusBarManager.getMethod(methodName);
|
|
|
|
+ expand.invoke(service);
|
|
|
|
+ } catch (Exception e) {
|
|
|
|
+ e.printStackTrace();
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ ///////////////////////////////////////////////////////////////////////////
|
|
|
|
+ // navigation bar
|
|
|
|
+ ///////////////////////////////////////////////////////////////////////////
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Return the navigation bar's height.
|
|
|
|
+ *
|
|
|
|
+ * @return the navigation bar's height
|
|
|
|
+ */
|
|
|
|
+ public static int getNavBarHeight() {
|
|
|
|
+ Resources res = BaseApplication.context.getResources();
|
|
|
|
+ int resourceId = res.getIdentifier("navigation_bar_height", "dimen", "android");
|
|
|
|
+ if (resourceId != 0) {
|
|
|
|
+ return res.getDimensionPixelSize(resourceId);
|
|
|
|
+ } else {
|
|
|
|
+ return 0;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Set the navigation bar's visibility.
|
|
|
|
+ *
|
|
|
|
+ * @param activity The activity.
|
|
|
|
+ * @param isVisible True to set navigation bar visible, false otherwise.
|
|
|
|
+ */
|
|
|
|
+ public static void setNavBarVisibility(@NonNull final Activity activity, boolean isVisible) {
|
|
|
|
+
|
|
|
|
+ setNavBarVisibility(activity.getWindow(), isVisible);
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Set the navigation bar's visibility.
|
|
|
|
+ *
|
|
|
|
+ * @param window The window.
|
|
|
|
+ * @param isVisible True to set navigation bar visible, false otherwise.
|
|
|
|
+ */
|
|
|
|
+ public static void setNavBarVisibility(@NonNull final Window window, boolean isVisible) {
|
|
|
|
+
|
|
|
|
+ final ViewGroup decorView = (ViewGroup) window.getDecorView();
|
|
|
|
+ for (int i = 0, count = decorView.getChildCount(); i < count; i++) {
|
|
|
|
+ final View child = decorView.getChildAt(i);
|
|
|
|
+ final int id = child.getId();
|
|
|
|
+ if (id != View.NO_ID) {
|
|
|
|
+ String resourceEntryName = getResNameById(id);
|
|
|
|
+ if ("navigationBarBackground".equals(resourceEntryName)) {
|
|
|
|
+ child.setVisibility(isVisible ? View.VISIBLE : View.INVISIBLE);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ final int uiOptions = View.SYSTEM_UI_FLAG_HIDE_NAVIGATION
|
|
|
|
+ | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION
|
|
|
|
+ | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY;
|
|
|
|
+ if (isVisible) {
|
|
|
|
+ decorView.setSystemUiVisibility(decorView.getSystemUiVisibility() & ~uiOptions);
|
|
|
|
+ } else {
|
|
|
|
+ decorView.setSystemUiVisibility(decorView.getSystemUiVisibility() | uiOptions);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Return whether the navigation bar visible.
|
|
|
|
+ * <p>Call it in onWindowFocusChanged will get right result.</p>
|
|
|
|
+ *
|
|
|
|
+ * @param activity The activity.
|
|
|
|
+ * @return {@code true}: yes<br>{@code false}: no
|
|
|
|
+ */
|
|
|
|
+ public static boolean isNavBarVisible(@NonNull final Activity activity) {
|
|
|
|
+ return isNavBarVisible(activity.getWindow());
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Return whether the navigation bar visible.
|
|
|
|
+ * <p>Call it in onWindowFocusChanged will get right result.</p>
|
|
|
|
+ *
|
|
|
|
+ * @param window The window.
|
|
|
|
+ * @return {@code true}: yes<br>{@code false}: no
|
|
|
|
+ */
|
|
|
|
+ public static boolean isNavBarVisible(@NonNull final Window window) {
|
|
|
|
+ boolean isVisible = false;
|
|
|
|
+ ViewGroup decorView = (ViewGroup) window.getDecorView();
|
|
|
|
+ for (int i = 0, count = decorView.getChildCount(); i < count; i++) {
|
|
|
|
+ final View child = decorView.getChildAt(i);
|
|
|
|
+ final int id = child.getId();
|
|
|
|
+ if (id != View.NO_ID) {
|
|
|
|
+ String resourceEntryName = getResNameById(id);
|
|
|
|
+ if ("navigationBarBackground".equals(resourceEntryName)
|
|
|
|
+ && child.getVisibility() == View.VISIBLE) {
|
|
|
|
+ isVisible = true;
|
|
|
|
+ break;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ if (isVisible) {
|
|
|
|
+ int visibility = decorView.getSystemUiVisibility();
|
|
|
|
+ isVisible = (visibility & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) == 0;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ return isVisible;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ private static String getResNameById(int id) {
|
|
|
|
+ try {
|
|
|
|
+ return BaseApplication.context.getResources().getResourceEntryName(id);
|
|
|
|
+ } catch (Exception ignore) {
|
|
|
|
+ return "";
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Set the navigation bar's color.
|
|
|
|
+ *
|
|
|
|
+ * @param activity The activity.
|
|
|
|
+ * @param color The navigation bar's color.
|
|
|
|
+ */
|
|
|
|
+ @RequiresApi(Build.VERSION_CODES.LOLLIPOP)
|
|
|
|
+ public static void setNavBarColor(@NonNull final Activity activity, @ColorInt final int color) {
|
|
|
|
+ setNavBarColor(activity.getWindow(), color);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Set the navigation bar's color.
|
|
|
|
+ *
|
|
|
|
+ * @param window The window.
|
|
|
|
+ * @param color The navigation bar's color.
|
|
|
|
+ */
|
|
|
|
+ @RequiresApi(Build.VERSION_CODES.LOLLIPOP)
|
|
|
|
+ public static void setNavBarColor(@NonNull final Window window, @ColorInt final int color) {
|
|
|
|
+ window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);
|
|
|
|
+ window.setNavigationBarColor(color);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Return the color of navigation bar.
|
|
|
|
+ *
|
|
|
|
+ * @param activity The activity.
|
|
|
|
+ * @return the color of navigation bar
|
|
|
|
+ */
|
|
|
|
+ @RequiresApi(Build.VERSION_CODES.LOLLIPOP)
|
|
|
|
+ public static int getNavBarColor(@NonNull final Activity activity) {
|
|
|
|
+ return getNavBarColor(activity.getWindow());
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Return the color of navigation bar.
|
|
|
|
+ *
|
|
|
|
+ * @param window The window.
|
|
|
|
+ * @return the color of navigation bar
|
|
|
|
+ */
|
|
|
|
+ @RequiresApi(Build.VERSION_CODES.LOLLIPOP)
|
|
|
|
+ public static int getNavBarColor(@NonNull final Window window) {
|
|
|
|
+ return window.getNavigationBarColor();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Return whether the navigation bar visible.
|
|
|
|
+ *
|
|
|
|
+ * @return {@code true}: yes<br>{@code false}: no
|
|
|
|
+ */
|
|
|
|
+ public static boolean isSupportNavBar() {
|
|
|
|
+ if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR1) {
|
|
|
|
+ WindowManager wm = (WindowManager) BaseApplication.context.getSystemService(Context.WINDOW_SERVICE);
|
|
|
|
+ if (wm == null) return false;
|
|
|
|
+ Display display = wm.getDefaultDisplay();
|
|
|
|
+ Point size = new Point();
|
|
|
|
+ Point realSize = new Point();
|
|
|
|
+ display.getSize(size);
|
|
|
|
+ display.getRealSize(realSize);
|
|
|
|
+ return realSize.y != size.y || realSize.x != size.x;
|
|
|
|
+ }
|
|
|
|
+ boolean menu = ViewConfiguration.get(BaseApplication.context).hasPermanentMenuKey();
|
|
|
|
+ boolean back = KeyCharacterMap.deviceHasKey(KeyEvent.KEYCODE_BACK);
|
|
|
|
+ return !menu && !back;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Set the nav bar's light mode.
|
|
|
|
+ *
|
|
|
|
+ * @param activity The activity.
|
|
|
|
+ * @param isLightMode True to set nav bar light mode, false otherwise.
|
|
|
|
+ */
|
|
|
|
+ public static void setNavBarLightMode(@NonNull final Activity activity,
|
|
|
|
+ final boolean isLightMode) {
|
|
|
|
+ setNavBarLightMode(activity.getWindow(), isLightMode);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Set the nav bar's light mode.
|
|
|
|
+ *
|
|
|
|
+ * @param window The window.
|
|
|
|
+ * @param isLightMode True to set nav bar light mode, false otherwise.
|
|
|
|
+ */
|
|
|
|
+ public static void setNavBarLightMode(@NonNull final Window window,
|
|
|
|
+ final boolean isLightMode) {
|
|
|
|
+ if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
|
|
|
|
+ View decorView = window.getDecorView();
|
|
|
|
+ int vis = decorView.getSystemUiVisibility();
|
|
|
|
+ if (isLightMode) {
|
|
|
|
+ vis |= View.SYSTEM_UI_FLAG_LIGHT_NAVIGATION_BAR;
|
|
|
|
+ } else {
|
|
|
|
+ vis &= ~View.SYSTEM_UI_FLAG_LIGHT_NAVIGATION_BAR;
|
|
|
|
+ }
|
|
|
|
+ decorView.setSystemUiVisibility(vis);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Is the nav bar light mode.
|
|
|
|
+ *
|
|
|
|
+ * @param activity The activity.
|
|
|
|
+ * @return {@code true}: yes<br>{@code false}: no
|
|
|
|
+ */
|
|
|
|
+ public static boolean isNavBarLightMode(@NonNull final Activity activity) {
|
|
|
|
+ return isNavBarLightMode(activity.getWindow());
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Is the nav bar light mode.
|
|
|
|
+ *
|
|
|
|
+ * @param window The window.
|
|
|
|
+ * @return {@code true}: yes<br>{@code false}: no
|
|
|
|
+ */
|
|
|
|
+ public static boolean isNavBarLightMode(@NonNull final Window window) {
|
|
|
|
+ if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
|
|
|
|
+ View decorView = window.getDecorView();
|
|
|
|
+ int vis = decorView.getSystemUiVisibility();
|
|
|
|
+ return (vis & View.SYSTEM_UI_FLAG_LIGHT_NAVIGATION_BAR) != 0;
|
|
|
|
+ }
|
|
|
|
+ return false;
|
|
|
|
+ }
|
|
|
|
+}
|