android 沉浸通知欄

IOS的沉浸式通知欄很高大上,通知欄和app統一顏色或樣式,很美觀。android上面也早就人實現這種效果了。android

我在這邊也寫一個實現通知欄沉浸式的方法,目前只實現了相同顏色。app

先要改佈局文件xmlide

<?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="match_parent"
    android:fitsSystemWindows="true"
    android:background="@color/base_red"
    android:clipToPadding="true"
    android:orientation="vertical" >
</LinearLayout>

而後在Activity的Oncreate方法裏寫上以下幾句:佈局

    @Override
    protected void onCreate(Bundle arg0) {
        super.onCreate(arg0);
        setContentView(R.layout.activity_tabmain);
        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {// 4.4以上
            // 透明狀態欄
            getWindow().addFlags(
                    WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
            // 透明導航欄
            getWindow().addFlags(
                    WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION);
        }
    }

只在4.4系統以上才能用哈。ui

Fragment我沒有試,直接寫在父級Activity裏面spa

相關文章
相關標籤/搜索