Android 狀態(tài)欄和虛擬按鍵背景顏色的變化

今天介紹一下,我在項目開發(fā)過程中懈万,實現(xiàn)狀態(tài)欄和虛擬按鍵背景顏色變化的方法,實現(xiàn)方式是靶病,通過隱藏系統(tǒng)的狀態(tài)欄和虛擬按鍵的背景会通,實現(xiàn)圖片和背景顯示到狀態(tài)欄和虛擬按鍵下方。下面來看實現(xiàn)代碼:

  • 實現(xiàn)狀態(tài)欄背景的設(shè)置
    狀態(tài)欄工具類
public class StatusBarUtil {
    /**
     * 設(shè)置沉浸式狀態(tài)欄
     *
     * @param activity 需要設(shè)置的activity
     */
    public static void setTransparent(Activity activity) {
        //API19一下不考慮
        if (Build.VERSION.SDK_INT < Build.VERSION_CODES.KITKAT) {
            return;
        }
        transparentStatusBar(activity);
        setStatusBarTextColor(activity, Color.WHITE);
    }

    /**
     * 使?fàn)顟B(tài)欄透明
     */
    @TargetApi(Build.VERSION_CODES.KITKAT)
    private static void transparentStatusBar(Activity activity) {
        Window window = activity.getWindow();
        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
            window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);     
            window.clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
            //設(shè)置虛擬按鍵背景透明娄周,同時該屬性會實現(xiàn)沉浸式狀態(tài)欄
            window.addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION);

            window.setStatusBarColor(Color.TRANSPARENT);
//            window.setNavigationBarColor(Color.BLACK);
        } else if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
            window.addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
            window.clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION);
        }
    }

    /**
     * Android 6.0 以上設(shè)置狀態(tài)欄顏色
     */
    protected static void setStatusBarTextColor(Activity activity, @ColorInt int color) {
        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
            // 如果亮色涕侈,設(shè)置狀態(tài)欄文字為黑色
            if (isLightColor(color)) {
                activity.getWindow().getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR);
            } else {
                activity.getWindow().getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_VISIBLE);
            }
        }
    }

    /**
     * 判斷顏色是不是亮色
     *
     * @param color
     * @return
     * @from https://stackoverflow.com/questions/24260853/check-if-color-is-dark-or-light-in-android
     */
    private static boolean isLightColor(@ColorInt int color) {
        return ColorUtils.calculateLuminance(color) >= 0.5;
    }

    /**
     * 將布局設(shè)置為狀態(tài)欄的高度
     * 
     * @param context
     * @param view
     */
    public static void setStatusBarHeight(Context context, View view) {
        // 獲得狀態(tài)欄高度
        int height = getStatusBarHeight(context);
        ViewGroup.LayoutParams layoutParams = view.getLayoutParams();
        layoutParams.height = height;
        view.setLayoutParams(layoutParams);
//        status_bar.requestLayout();//請求重新布局
    }

    /**
     * 獲取狀態(tài)欄高度
     *
     * @param context context
     * @return 狀態(tài)欄高度
     */
    public static int getStatusBarHeight(Context context) {
        // 獲得狀態(tài)欄高度
        int resourceId = context.getResources().getIdentifier("status_bar_height", "dimen", "android");
        return context.getResources().getDimensionPixelSize(resourceId);
    }
}

調(diào)用方式(在super.onCreate(savedInstanceState)方法之前調(diào)用):

StatusBarUtil.setTransparent(this);

該方法中,首先判斷API版本煤辨,由于API19以下沒有設(shè)置狀態(tài)欄的方法裳涛,所以我們只考慮19以上的版本木张,接著調(diào)用了transparentStatusBar()方法,根據(jù)API21為分界端三,分別實現(xiàn)狀態(tài)欄背景的透明舷礼,然后是調(diào)用setStatusBarTextColor()方法,設(shè)置狀態(tài)欄字體的顏色郊闯。

實現(xiàn)效果:
1妻献、沉浸式


image.png

2、自定義狀態(tài)欄团赁,我設(shè)置的背景為白色


image.png

如果要填充自己需要的導(dǎo)航欄顏色的話育拨,可以自己創(chuàng)建一個導(dǎo)航欄布局layout_head,

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@color/bgGray"
    android:orientation="vertical">

    <View
        android:id="@+id/status_bar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@color/white"/>
</LinearLayout>

通過以下代碼:

    protected View getHeadView() {
        View view = View.inflate(activity, R.layout.layout_head, null);
        View status_bar = view.findViewById(R.id.status_bar);
        //status_bar .setBackground()

        StatusBarUtil.setStatusBarHeight(activity, status_bar);

        return view;
    }
    // frameLayout是你的activity留出的狀態(tài)欄布局
    frameLayout.addView(getHeadView());

這樣然痊,就可以設(shè)置自己想要的狀態(tài)欄的顏色和高度了至朗。

  • 虛擬按鍵背景顏色的設(shè)置
    虛擬按鍵工具類
public class NavigationBarUtil {
    public static void initActivity(View content) {
        new NavigationBarUtil(content);
    }

    /**
     * 被監(jiān)聽的視圖
     */
    private View mObserved;
    /**
     * 視圖變化前的可用高度
     */
    private int usableHeightView;
    private ViewGroup.LayoutParams layoutParams;

    private NavigationBarUtil(View content) {
        mObserved = content;
        //給View添加全局的布局監(jiān)聽器監(jiān)聽視圖的變化
        mObserved.getViewTreeObserver().addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener() {
            @Override
            public void onGlobalLayout() {
                resetViewHeight1();

            }
        });
        layoutParams = mObserved.getLayoutParams();
    }

   
    private int usableHeight = 0;
    private void resetViewHeight1() {
        int usableHeightViewNow = CalculateAvailableHeight();
        //比較布局變化前后的View的可用高度
        InputMethodManager inputMethodManager = (InputMethodManager) VankeApplication.getApplication().getSystemService(Context.INPUT_METHOD_SERVICE);
        Rect rect = new Rect();
        mObserved.getWindowVisibleDisplayFrame(rect);


        usableHeight = Math.max(usableHeight, rect.bottom);
        if (inputMethodManager.isActive() && usableHeight > rect.bottom) {//軟鍵盤顯示,導(dǎo)致界面布局改變
            return;
        }

        if (usableHeightViewNow != usableHeightView) {
            //如果兩次高度不一致
            //將當(dāng)前的View的可用高度設(shè)置成View的實際高度
            Configuration mConfiguration = VankeApplication.getApplication().getResources().getConfiguration(); //獲取設(shè)置的配置信息
            int ori = mConfiguration.orientation; //獲取屏幕方向
            if (ori == Configuration.ORIENTATION_LANDSCAPE) {
                //橫屏
                layoutParams.width = usableHeightViewNow;
            } else if (ori == Configuration.ORIENTATION_PORTRAIT) {
                //豎屏
                layoutParams.height = usableHeightViewNow;
            }

            mObserved.requestLayout();//請求重新布局
            usableHeightView = usableHeightViewNow;
        }
    }

    /**
     * 計算試圖高度
     *
     * @return
     */
    private int CalculateAvailableHeight() {
        Rect r = new Rect();
        mObserved.getWindowVisibleDisplayFrame(r);
        Configuration mConfiguration = VankeApplication.getApplication().getResources().getConfiguration(); //獲取設(shè)置的配置信息
        int ori = mConfiguration.orientation; //獲取屏幕方向
        if (ori == Configuration.ORIENTATION_LANDSCAPE) {
            //橫屏
            return (r.right);
        } else if (ori == Configuration.ORIENTATION_PORTRAIT) {
            //豎屏
            return (r.bottom);
        }
//        return (r.bottom - r.top);//如果不是沉浸狀態(tài)欄剧浸,需要減去頂部高度
        return (r.bottom);//如果是沉浸狀態(tài)欄
    }

    /**
     * 判斷底部是否有虛擬鍵
     *
     * @param context
     * @return
     */
    public static boolean hasNavigationBar(Context context) {
        boolean hasNavigationBar = false;
        Resources rs = context.getResources();
        int id = rs.getIdentifier("config_showNavigationBar", "bool", "android");
        if (id > 0) {
            hasNavigationBar = rs.getBoolean(id);
        }
        try {
            Class systemPropertiesClass = Class.forName("android.os.SystemProperties");
            Method m = systemPropertiesClass.getMethod("get", String.class);
            String navBarOverride = (String) m.invoke(systemPropertiesClass, "qemu.hw.mainkeys");
            if ("1".equals(navBarOverride)) {
                hasNavigationBar = false;
            } else if ("0".equals(navBarOverride)) {
                hasNavigationBar = true;
            }
        } catch (Exception e) {

        }
        return hasNavigationBar;

    }

}

調(diào)用方式(在onCreate()中調(diào)用):

        if (NavigationBarUtil.hasNavigationBar(this)) {
            NavigationBarUtil.initActivity(findViewById(android.R.id.content));
        }

這里我直接使用的系統(tǒng)的布局锹引,首先調(diào)用hasNavigationBar()判斷是否有虛擬按鍵,如果有唆香,則調(diào)用initActivity()初始化NavigationBarUtil工具類嫌变,在工具類的構(gòu)造方法中,給傳入的view添加了全局的布局監(jiān)聽器躬它,監(jiān)聽視圖的變化腾啥,在監(jiān)聽器中,調(diào)用resetViewHeight1()方法冯吓,里面通過CalculateAvailableHeight()獲取虛擬按鍵的高度倘待,根據(jù)橫豎屏的不同,分別設(shè)置了view的高度组贺,實現(xiàn)了虛擬按鍵布局背景的填充凸舵。

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市失尖,隨后出現(xiàn)的幾起案子啊奄,更是在濱河造成了極大的恐慌,老刑警劉巖掀潮,帶你破解...
    沈念sama閱讀 206,482評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件菇夸,死亡現(xiàn)場離奇詭異,居然都是意外死亡仪吧,警方通過查閱死者的電腦和手機庄新,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,377評論 2 382
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來薯鼠,“玉大人择诈,你說我怎么就攤上這事凡蚜。” “怎么了吭从?”我有些...
    開封第一講書人閱讀 152,762評論 0 342
  • 文/不壞的土叔 我叫張陵,是天一觀的道長恶迈。 經(jīng)常有香客問我涩金,道長,這世上最難降的妖魔是什么暇仲? 我笑而不...
    開封第一講書人閱讀 55,273評論 1 279
  • 正文 為了忘掉前任步做,我火速辦了婚禮,結(jié)果婚禮上奈附,老公的妹妹穿的比我還像新娘全度。我一直安慰自己,他們只是感情好斥滤,可當(dāng)我...
    茶點故事閱讀 64,289評論 5 373
  • 文/花漫 我一把揭開白布将鸵。 她就那樣靜靜地躺著,像睡著了一般佑颇。 火紅的嫁衣襯著肌膚如雪顶掉。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,046評論 1 285
  • 那天挑胸,我揣著相機與錄音痒筒,去河邊找鬼。 笑死茬贵,一個胖子當(dāng)著我的面吹牛簿透,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播解藻,決...
    沈念sama閱讀 38,351評論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼老充,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了舆逃?” 一聲冷哼從身側(cè)響起蚂维,我...
    開封第一講書人閱讀 36,988評論 0 259
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎路狮,沒想到半個月后虫啥,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,476評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡奄妨,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 35,948評論 2 324
  • 正文 我和宋清朗相戀三年涂籽,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片砸抛。...
    茶點故事閱讀 38,064評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡评雌,死狀恐怖树枫,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情景东,我是刑警寧澤砂轻,帶...
    沈念sama閱讀 33,712評論 4 323
  • 正文 年R本政府宣布,位于F島的核電站斤吐,受9級特大地震影響搔涝,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜和措,卻給世界環(huán)境...
    茶點故事閱讀 39,261評論 3 307
  • 文/蒙蒙 一庄呈、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧派阱,春花似錦诬留、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,264評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至颁独,卻和暖如春彩届,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背誓酒。 一陣腳步聲響...
    開封第一講書人閱讀 31,486評論 1 262
  • 我被黑心中介騙來泰國打工樟蠕, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人靠柑。 一個月前我還...
    沈念sama閱讀 45,511評論 2 354
  • 正文 我出身青樓寨辩,卻偏偏與公主長得像,于是被迫代替她去往敵國和親歼冰。 傳聞我的和親對象是個殘疾皇子靡狞,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 42,802評論 2 345