設(shè)置沉侵式狀態(tài)欄/圖片沉侵

效果如圖

實(shí)現(xiàn)步驟丧枪,只需4步:

1.新建工具類(lèi)StatusBarUtil:

public class StatusBarUtil {

public static final int DEFAULT_STATUS_BAR_ALPHA =112;

? ? private static final int FAKE_STATUS_BAR_VIEW_ID = com.jaeger.library.R.id.statusbarutil_fake_status_bar_view;

? ? private static final int FAKE_TRANSLUCENT_VIEW_ID = com.jaeger.library.R.id.statusbarutil_translucent_view;

? ? private static final int TAG_KEY_HAVE_SET_OFFSET = -123;

? ? /**

* 設(shè)置狀態(tài)欄顏色

*

? ? * @param activity 需要設(shè)置的 activity

? ? * @param color? ? 狀態(tài)欄顏色值

*/

? ? public static void setColor(Activity activity, @ColorInt int color) {

setColor(activity, color, DEFAULT_STATUS_BAR_ALPHA);

? ? }

/**

* 設(shè)置狀態(tài)欄顏色

*

? ? * @param activity? ? ? 需要設(shè)置的activity

? ? * @param color? ? ? ? ? 狀態(tài)欄顏色值

? ? * @param statusBarAlpha 狀態(tài)欄透明度

*/

? ? public static void setColor(Activity activity, @ColorInt int color, int statusBarAlpha) {

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {

activity.getWindow().addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);

? ? ? ? ? ? activity.getWindow().clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);

? ? ? ? ? ? activity.getWindow().setStatusBarColor(calculateStatusColor(color, statusBarAlpha));

? ? ? ? }else if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {

activity.getWindow().addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);

? ? ? ? ? ? ViewGroup decorView = (ViewGroup) activity.getWindow().getDecorView();

? ? ? ? ? ? View fakeStatusBarView = decorView.findViewById(FAKE_STATUS_BAR_VIEW_ID);

? ? ? ? ? ? if (fakeStatusBarView !=null) {

if (fakeStatusBarView.getVisibility() == View.GONE) {

fakeStatusBarView.setVisibility(View.VISIBLE);

? ? ? ? ? ? ? ? }

fakeStatusBarView.setBackgroundColor(calculateStatusColor(color, statusBarAlpha));

? ? ? ? ? ? }else {

decorView.addView(createStatusBarView(activity, color, statusBarAlpha));

? ? ? ? ? ? }

setRootView(activity);

? ? ? ? }

}

/**

* 為滑動(dòng)返回界面設(shè)置狀態(tài)欄顏色

*

? ? * @param activity 需要設(shè)置的activity

? ? * @param color? ? 狀態(tài)欄顏色值

*/

? ? public static void setColorForSwipeBack(Activity activity, int color) {

setColorForSwipeBack(activity, color, DEFAULT_STATUS_BAR_ALPHA);

? ? }

/**

* 為滑動(dòng)返回界面設(shè)置狀態(tài)欄顏色

*

? ? * @param activity? ? ? 需要設(shè)置的activity

? ? * @param color? ? ? ? ? 狀態(tài)欄顏色值

? ? * @param statusBarAlpha 狀態(tài)欄透明度

*/

? ? public static void setColorForSwipeBack(Activity activity, @ColorInt int color, int statusBarAlpha) {

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {

ViewGroup contentView = ((ViewGroup) activity.findViewById(android.R.id.content));

? ? ? ? ? ? View rootView = contentView.getChildAt(0);

? ? ? ? ? ? int statusBarHeight =getStatusBarHeight(activity);

? ? ? ? ? ? if (rootView !=null && rootViewinstanceof CoordinatorLayout) {

final CoordinatorLayout coordinatorLayout = (CoordinatorLayout) rootView;

? ? ? ? ? ? ? ? if (Build.VERSION.SDK_INT < Build.VERSION_CODES.LOLLIPOP) {

coordinatorLayout.setFitsSystemWindows(false);

? ? ? ? ? ? ? ? ? ? contentView.setBackgroundColor(calculateStatusColor(color, statusBarAlpha));

? ? ? ? ? ? ? ? ? ? boolean isNeedRequestLayout = contentView.getPaddingTop() < statusBarHeight;

? ? ? ? ? ? ? ? ? ? if (isNeedRequestLayout) {

contentView.setPadding(0, statusBarHeight, 0, 0);

? ? ? ? ? ? ? ? ? ? ? ? coordinatorLayout.post(new Runnable() {

@Override

? ? ? ? ? ? ? ? ? ? ? ? ? ? public void run() {

coordinatorLayout.requestLayout();

? ? ? ? ? ? ? ? ? ? ? ? ? ? }

});

? ? ? ? ? ? ? ? ? ? }

}else {

coordinatorLayout.setStatusBarBackgroundColor(calculateStatusColor(color, statusBarAlpha));

? ? ? ? ? ? ? ? }

}else {

contentView.setPadding(0, statusBarHeight, 0, 0);

? ? ? ? ? ? ? ? contentView.setBackgroundColor(calculateStatusColor(color, statusBarAlpha));

? ? ? ? ? ? }

setTransparentForWindow(activity);

? ? ? ? }

}

/**

* 設(shè)置狀態(tài)欄純色 不加半透明效果

*

? ? * @param activity 需要設(shè)置的 activity

? ? * @param color? ? 狀態(tài)欄顏色值

*/

? ? public static void setColorNoTranslucent(Activity activity, @ColorInt int color) {

setColor(activity, color, 0);

? ? }

/**

* 設(shè)置狀態(tài)欄顏色(5.0以下無(wú)半透明效果,不建議使用)

*

? ? * @param activity 需要設(shè)置的 activity

? ? * @param color? ? 狀態(tài)欄顏色值

*/

? ? @Deprecated

? ? public static void setColorDiff(Activity activity, @ColorInt int color) {

if (Build.VERSION.SDK_INT < Build.VERSION_CODES.KITKAT) {

return;

? ? ? ? }

transparentStatusBar(activity);

? ? ? ? ViewGroup contentView = (ViewGroup) activity.findViewById(android.R.id.content);

? ? ? ? // 移除半透明矩形,以免疊加

? ? ? ? View fakeStatusBarView = contentView.findViewById(FAKE_STATUS_BAR_VIEW_ID);

? ? ? ? if (fakeStatusBarView !=null) {

if (fakeStatusBarView.getVisibility() == View.GONE) {

fakeStatusBarView.setVisibility(View.VISIBLE);

? ? ? ? ? ? }

fakeStatusBarView.setBackgroundColor(color);

? ? ? ? }else {

contentView.addView(createStatusBarView(activity, color));

? ? ? ? }

setRootView(activity);

? ? }

/**

* 使?fàn)顟B(tài)欄半透明

? ? *

? ? * 適用于圖片作為背景的界面,此時(shí)需要圖片填充到狀態(tài)欄

*

? ? * @param activity 需要設(shè)置的activity

*/

? ? public static void setTranslucent(Activity activity) {

setTranslucent(activity, DEFAULT_STATUS_BAR_ALPHA);

? ? }

/**

* 使?fàn)顟B(tài)欄半透明

? ? *

? ? * 適用于圖片作為背景的界面,此時(shí)需要圖片填充到狀態(tài)欄

*

? ? * @param activity? ? ? 需要設(shè)置的activity

? ? * @param statusBarAlpha 狀態(tài)欄透明度

*/

? ? public static void setTranslucent(Activity activity, int statusBarAlpha) {

if (Build.VERSION.SDK_INT < Build.VERSION_CODES.KITKAT) {

return;

? ? ? ? }

setTransparent(activity);

? ? ? ? addTranslucentView(activity, statusBarAlpha);

? ? }

/**

* 針對(duì)根布局是 CoordinatorLayout, 使?fàn)顟B(tài)欄半透明

? ? *

? ? * 適用于圖片作為背景的界面,此時(shí)需要圖片填充到狀態(tài)欄

*

? ? * @param activity? ? ? 需要設(shè)置的activity

? ? * @param statusBarAlpha 狀態(tài)欄透明度

*/

? ? public static void setTranslucentForCoordinatorLayout(Activity activity, int statusBarAlpha) {

if (Build.VERSION.SDK_INT < Build.VERSION_CODES.KITKAT) {

return;

? ? ? ? }

transparentStatusBar(activity);

? ? ? ? addTranslucentView(activity, statusBarAlpha);

? ? }

/**

* 設(shè)置狀態(tài)欄全透明

*

? ? * @param activity 需要設(shè)置的activity

*/

? ? public static void setTransparent(Activity activity) {

if (Build.VERSION.SDK_INT < Build.VERSION_CODES.KITKAT) {

return;

? ? ? ? }

transparentStatusBar(activity);

? ? ? ? setRootView(activity);

? ? }

/**

* 使?fàn)顟B(tài)欄透明(5.0以上半透明效果,不建議使用)

? ? *

? ? * 適用于圖片作為背景的界面,此時(shí)需要圖片填充到狀態(tài)欄

*

? ? * @param activity 需要設(shè)置的activity

*/

? ? @Deprecated

? ? public static void setTranslucentDiff(Activity activity) {

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {

// 設(shè)置狀態(tài)欄透明

? ? ? ? ? ? activity.getWindow().addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);

? ? ? ? ? ? setRootView(activity);

? ? ? ? }

}

/**

* 為DrawerLayout 布局設(shè)置狀態(tài)欄變色

*

? ? * @param activity? ? 需要設(shè)置的activity

? ? * @param drawerLayout DrawerLayout

? ? * @param color? ? ? ? 狀態(tài)欄顏色值

*/

? ? public static void setColorForDrawerLayout(Activity activity, DrawerLayout drawerLayout, @ColorInt int color) {

setColorForDrawerLayout(activity, drawerLayout, color, DEFAULT_STATUS_BAR_ALPHA);

? ? }

/**

* 為DrawerLayout 布局設(shè)置狀態(tài)欄顏色,純色

*

? ? * @param activity? ? 需要設(shè)置的activity

? ? * @param drawerLayout DrawerLayout

? ? * @param color? ? ? ? 狀態(tài)欄顏色值

*/

? ? public static void setColorNoTranslucentForDrawerLayout(Activity activity, DrawerLayout drawerLayout, @ColorInt int color) {

setColorForDrawerLayout(activity, drawerLayout, color, 0);

? ? }

/**

* 為DrawerLayout 布局設(shè)置狀態(tài)欄變色

*

? ? * @param activity? ? ? 需要設(shè)置的activity

? ? * @param drawerLayout? DrawerLayout

? ? * @param color? ? ? ? ? 狀態(tài)欄顏色值

? ? * @param statusBarAlpha 狀態(tài)欄透明度

*/

? ? public static void setColorForDrawerLayout(Activity activity, DrawerLayout drawerLayout, @ColorInt int color,

? ? ? ? int statusBarAlpha) {

if (Build.VERSION.SDK_INT < Build.VERSION_CODES.KITKAT) {

return;

? ? ? ? }

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {

activity.getWindow().addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);

? ? ? ? ? ? activity.getWindow().clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);

? ? ? ? ? ? activity.getWindow().setStatusBarColor(Color.TRANSPARENT);

? ? ? ? }else {

activity.getWindow().addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);

? ? ? ? }

// 生成一個(gè)狀態(tài)欄大小的矩形

// 添加 statusBarView 到布局中

? ? ? ? ViewGroup contentLayout = (ViewGroup) drawerLayout.getChildAt(0);

? ? ? ? View fakeStatusBarView = contentLayout.findViewById(FAKE_STATUS_BAR_VIEW_ID);

? ? ? ? if (fakeStatusBarView !=null) {

if (fakeStatusBarView.getVisibility() == View.GONE) {

fakeStatusBarView.setVisibility(View.VISIBLE);

? ? ? ? ? ? }

fakeStatusBarView.setBackgroundColor(color);

? ? ? ? }else {

contentLayout.addView(createStatusBarView(activity, color), 0);

? ? ? ? }

// 內(nèi)容布局不是 LinearLayout 時(shí),設(shè)置padding top

? ? ? ? if (!(contentLayoutinstanceof LinearLayout) && contentLayout.getChildAt(1) !=null) {

contentLayout.getChildAt(1)

.setPadding(contentLayout.getPaddingLeft(), getStatusBarHeight(activity) + contentLayout.getPaddingTop(),

? ? ? ? ? ? ? ? ? ? contentLayout.getPaddingRight(), contentLayout.getPaddingBottom());

? ? ? ? }

// 設(shè)置屬性

? ? ? ? setDrawerLayoutProperty(drawerLayout, contentLayout);

? ? ? ? addTranslucentView(activity, statusBarAlpha);

? ? }

/**

* 設(shè)置 DrawerLayout 屬性

*

? ? * @param drawerLayout? ? ? ? ? ? ? DrawerLayout

? ? * @param drawerLayoutContentLayout DrawerLayout 的內(nèi)容布局

*/

? ? private static void setDrawerLayoutProperty(DrawerLayout drawerLayout, ViewGroup drawerLayoutContentLayout) {

ViewGroup drawer = (ViewGroup) drawerLayout.getChildAt(1);

? ? ? ? drawerLayout.setFitsSystemWindows(false);

? ? ? ? drawerLayoutContentLayout.setFitsSystemWindows(false);

? ? ? ? drawerLayoutContentLayout.setClipToPadding(true);

? ? ? ? drawer.setFitsSystemWindows(false);

? ? }

/**

* 為DrawerLayout 布局設(shè)置狀態(tài)欄變色(5.0以下無(wú)半透明效果,不建議使用)

*

? ? * @param activity? ? 需要設(shè)置的activity

? ? * @param drawerLayout DrawerLayout

? ? * @param color? ? ? ? 狀態(tài)欄顏色值

*/

? ? @Deprecated

? ? public static void setColorForDrawerLayoutDiff(Activity activity, DrawerLayout drawerLayout, @ColorInt int color) {

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {

activity.getWindow().addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);

? ? ? ? ? ? // 生成一個(gè)狀態(tài)欄大小的矩形

? ? ? ? ? ? ViewGroup contentLayout = (ViewGroup) drawerLayout.getChildAt(0);

? ? ? ? ? ? View fakeStatusBarView = contentLayout.findViewById(FAKE_STATUS_BAR_VIEW_ID);

? ? ? ? ? ? if (fakeStatusBarView !=null) {

if (fakeStatusBarView.getVisibility() == View.GONE) {

fakeStatusBarView.setVisibility(View.VISIBLE);

? ? ? ? ? ? ? ? }

fakeStatusBarView.setBackgroundColor(calculateStatusColor(color, DEFAULT_STATUS_BAR_ALPHA));

? ? ? ? ? ? }else {

// 添加 statusBarView 到布局中

? ? ? ? ? ? ? ? contentLayout.addView(createStatusBarView(activity, color), 0);

? ? ? ? ? ? }

// 內(nèi)容布局不是 LinearLayout 時(shí),設(shè)置padding top

? ? ? ? ? ? if (!(contentLayoutinstanceof LinearLayout) && contentLayout.getChildAt(1) !=null) {

contentLayout.getChildAt(1).setPadding(0, getStatusBarHeight(activity), 0, 0);

? ? ? ? ? ? }

// 設(shè)置屬性

? ? ? ? ? ? setDrawerLayoutProperty(drawerLayout, contentLayout);

? ? ? ? }

}

/**

* 為 DrawerLayout 布局設(shè)置狀態(tài)欄透明

*

? ? * @param activity? ? 需要設(shè)置的activity

? ? * @param drawerLayout DrawerLayout

*/

? ? public static void setTranslucentForDrawerLayout(Activity activity, DrawerLayout drawerLayout) {

setTranslucentForDrawerLayout(activity, drawerLayout, DEFAULT_STATUS_BAR_ALPHA);

? ? }

/**

* 為 DrawerLayout 布局設(shè)置狀態(tài)欄透明

*

? ? * @param activity? ? 需要設(shè)置的activity

? ? * @param drawerLayout DrawerLayout

*/

? ? public static void setTranslucentForDrawerLayout(Activity activity, DrawerLayout drawerLayout, int statusBarAlpha) {

if (Build.VERSION.SDK_INT < Build.VERSION_CODES.KITKAT) {

return;

? ? ? ? }

setTransparentForDrawerLayout(activity, drawerLayout);

? ? ? ? addTranslucentView(activity, statusBarAlpha);

? ? }

/**

* 為 DrawerLayout 布局設(shè)置狀態(tài)欄透明

*

? ? * @param activity? ? 需要設(shè)置的activity

? ? * @param drawerLayout DrawerLayout

*/

? ? public static void setTransparentForDrawerLayout(Activity activity, DrawerLayout drawerLayout) {

if (Build.VERSION.SDK_INT < Build.VERSION_CODES.KITKAT) {

return;

? ? ? ? }

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {

activity.getWindow().addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);

? ? ? ? ? ? activity.getWindow().clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);

? ? ? ? ? ? activity.getWindow().setStatusBarColor(Color.TRANSPARENT);

? ? ? ? }else {

activity.getWindow().addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);

? ? ? ? }

ViewGroup contentLayout = (ViewGroup) drawerLayout.getChildAt(0);

? ? ? ? // 內(nèi)容布局不是 LinearLayout 時(shí),設(shè)置padding top

? ? ? ? if (!(contentLayoutinstanceof LinearLayout) && contentLayout.getChildAt(1) !=null) {

contentLayout.getChildAt(1).setPadding(0, getStatusBarHeight(activity), 0, 0);

? ? ? ? }

// 設(shè)置屬性

? ? ? ? setDrawerLayoutProperty(drawerLayout, contentLayout);

? ? }

/**

* 為 DrawerLayout 布局設(shè)置狀態(tài)欄透明(5.0以上半透明效果,不建議使用)

*

? ? * @param activity? ? 需要設(shè)置的activity

? ? * @param drawerLayout DrawerLayout

*/

? ? @Deprecated

? ? public static void setTranslucentForDrawerLayoutDiff(Activity activity, DrawerLayout drawerLayout) {

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {

// 設(shè)置狀態(tài)欄透明

? ? ? ? ? ? activity.getWindow().addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);

? ? ? ? ? ? // 設(shè)置內(nèi)容布局屬性

? ? ? ? ? ? ViewGroup contentLayout = (ViewGroup) drawerLayout.getChildAt(0);

? ? ? ? ? ? contentLayout.setFitsSystemWindows(true);

? ? ? ? ? ? contentLayout.setClipToPadding(true);

? ? ? ? ? ? // 設(shè)置抽屜布局屬性

? ? ? ? ? ? ViewGroup vg = (ViewGroup) drawerLayout.getChildAt(1);

? ? ? ? ? ? vg.setFitsSystemWindows(false);

? ? ? ? ? ? // 設(shè)置 DrawerLayout 屬性

? ? ? ? ? ? drawerLayout.setFitsSystemWindows(false);

? ? ? ? }

}

/**

* 為頭部是 ImageView 的界面設(shè)置狀態(tài)欄全透明

*

? ? * @param activity? ? ? 需要設(shè)置的activity

? ? * @param needOffsetView 需要向下偏移的 View

*/

? ? public static void setTransparentForImageView(Activity activity, View needOffsetView) {

setTranslucentForImageView(activity, 0, needOffsetView);

? ? }

/**

* 為頭部是 ImageView 的界面設(shè)置狀態(tài)欄透明(使用默認(rèn)透明度)

*

? ? * @param activity? ? ? 需要設(shè)置的activity

? ? * @param needOffsetView 需要向下偏移的 View

*/

? ? public static void setTranslucentForImageView(Activity activity, View needOffsetView) {

setTranslucentForImageView(activity, DEFAULT_STATUS_BAR_ALPHA, needOffsetView);

? ? }

/**

* 為頭部是 ImageView 的界面設(shè)置狀態(tài)欄透明

*

? ? * @param activity? ? ? 需要設(shè)置的activity

? ? * @param statusBarAlpha 狀態(tài)欄透明度

? ? * @param needOffsetView 需要向下偏移的 View

*/

? ? public static void setTranslucentForImageView(Activity activity, int statusBarAlpha, View needOffsetView) {

if (Build.VERSION.SDK_INT < Build.VERSION_CODES.KITKAT) {

return;

? ? ? ? }

setTransparentForWindow(activity);

? ? ? ? addTranslucentView(activity, statusBarAlpha);

? ? ? ? if (needOffsetView !=null) {

Object haveSetOffset = needOffsetView.getTag(TAG_KEY_HAVE_SET_OFFSET);

? ? ? ? ? ? if (haveSetOffset !=null && (Boolean) haveSetOffset) {

return;

? ? ? ? ? ? }

ViewGroup.MarginLayoutParams layoutParams = (ViewGroup.MarginLayoutParams) needOffsetView.getLayoutParams();

? ? ? ? ? ? layoutParams.setMargins(layoutParams.leftMargin, layoutParams.topMargin +getStatusBarHeight(activity),

? ? ? ? ? ? ? ? layoutParams.rightMargin, layoutParams.bottomMargin);

? ? ? ? ? ? needOffsetView.setTag(TAG_KEY_HAVE_SET_OFFSET, true);

? ? ? ? }

}

/**

* 為 fragment 頭部是 ImageView 的設(shè)置狀態(tài)欄透明

*

? ? * @param activity? ? ? fragment 對(duì)應(yīng)的 activity

? ? * @param needOffsetView 需要向下偏移的 View

*/

? ? public static void setTranslucentForImageViewInFragment(Activity activity, View needOffsetView) {

setTranslucentForImageViewInFragment(activity, DEFAULT_STATUS_BAR_ALPHA, needOffsetView);

? ? }

/**

* 為 fragment 頭部是 ImageView 的設(shè)置狀態(tài)欄透明

*

? ? * @param activity? ? ? fragment 對(duì)應(yīng)的 activity

? ? * @param needOffsetView 需要向下偏移的 View

*/

? ? public static void setTransparentForImageViewInFragment(Activity activity, View needOffsetView) {

setTranslucentForImageViewInFragment(activity, 0, needOffsetView);

? ? }

/**

* 為 fragment 頭部是 ImageView 的設(shè)置狀態(tài)欄透明

*

? ? * @param activity? ? ? fragment 對(duì)應(yīng)的 activity

? ? * @param statusBarAlpha 狀態(tài)欄透明度

? ? * @param needOffsetView 需要向下偏移的 View

*/

? ? public static void setTranslucentForImageViewInFragment(Activity activity, int statusBarAlpha, View needOffsetView) {

setTranslucentForImageView(activity, statusBarAlpha, needOffsetView);

? ? ? ? if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT && Build.VERSION.SDK_INT < Build.VERSION_CODES.LOLLIPOP) {

clearPreviousSetting(activity);

? ? ? ? }

}

/**

* 隱藏偽狀態(tài)欄 View

*

? ? * @param activity 調(diào)用的 Activity

*/

? ? public static void hideFakeStatusBarView(Activity activity) {

ViewGroup decorView = (ViewGroup) activity.getWindow().getDecorView();

? ? ? ? View fakeStatusBarView = decorView.findViewById(FAKE_STATUS_BAR_VIEW_ID);

? ? ? ? if (fakeStatusBarView !=null) {

fakeStatusBarView.setVisibility(View.GONE);

? ? ? ? }

View fakeTranslucentView = decorView.findViewById(FAKE_TRANSLUCENT_VIEW_ID);

? ? ? ? if (fakeTranslucentView !=null) {

fakeTranslucentView.setVisibility(View.GONE);

? ? ? ? }

}

///////////////////////////////////////////////////////////////////////////////////

? ? @TargetApi(Build.VERSION_CODES.KITKAT)

private static void clearPreviousSetting(Activity activity) {

ViewGroup decorView = (ViewGroup) activity.getWindow().getDecorView();

? ? ? ? View fakeStatusBarView = decorView.findViewById(FAKE_STATUS_BAR_VIEW_ID);

? ? ? ? if (fakeStatusBarView !=null) {

decorView.removeView(fakeStatusBarView);

? ? ? ? ? ? ViewGroup rootView = (ViewGroup) ((ViewGroup) activity.findViewById(android.R.id.content)).getChildAt(0);

? ? ? ? ? ? rootView.setPadding(0, 0, 0, 0);

? ? ? ? }

}

/**

* 添加半透明矩形條

*

? ? * @param activity? ? ? 需要設(shè)置的 activity

? ? * @param statusBarAlpha 透明值

*/

? ? private static void addTranslucentView(Activity activity, int statusBarAlpha) {

ViewGroup contentView = (ViewGroup) activity.findViewById(android.R.id.content);

? ? ? ? View fakeTranslucentView = contentView.findViewById(FAKE_TRANSLUCENT_VIEW_ID);

? ? ? ? if (fakeTranslucentView !=null) {

if (fakeTranslucentView.getVisibility() == View.GONE) {

fakeTranslucentView.setVisibility(View.VISIBLE);

? ? ? ? ? ? }

fakeTranslucentView.setBackgroundColor(Color.argb(statusBarAlpha, 0, 0, 0));

? ? ? ? }else {

contentView.addView(createTranslucentStatusBarView(activity, statusBarAlpha));

? ? ? ? }

}

/**

* 生成一個(gè)和狀態(tài)欄大小相同的彩色矩形條

*

? ? * @param activity 需要設(shè)置的 activity

? ? * @param color? ? 狀態(tài)欄顏色值

? ? * @return 狀態(tài)欄矩形條

*/

? ? private static ViewcreateStatusBarView(Activity activity, @ColorInt int color) {

return createStatusBarView(activity, color, 0);

? ? }

/**

* 生成一個(gè)和狀態(tài)欄大小相同的半透明矩形條

*

? ? * @param activity 需要設(shè)置的activity

? ? * @param color? ? 狀態(tài)欄顏色值

? ? * @param alpha? ? 透明值

? ? * @return 狀態(tài)欄矩形條

*/

? ? private static ViewcreateStatusBarView(Activity activity, @ColorInt int color, int alpha) {

// 繪制一個(gè)和狀態(tài)欄一樣高的矩形

? ? ? ? View statusBarView =new View(activity);

? ? ? ? LinearLayout.LayoutParams params =

new LinearLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, getStatusBarHeight(activity));

? ? ? ? statusBarView.setLayoutParams(params);

? ? ? ? statusBarView.setBackgroundColor(calculateStatusColor(color, alpha));

? ? ? ? statusBarView.setId(FAKE_STATUS_BAR_VIEW_ID);

? ? ? ? return statusBarView;

? ? }

/**

* 設(shè)置根布局參數(shù)

*/

? ? private static void setRootView(Activity activity) {

ViewGroup parent = (ViewGroup) activity.findViewById(android.R.id.content);

? ? ? ? for (int i =0, count = parent.getChildCount(); i < count; i++) {

View childView = parent.getChildAt(i);

? ? ? ? ? ? if (childViewinstanceof ViewGroup) {

childView.setFitsSystemWindows(true);

? ? ? ? ? ? ? ? ((ViewGroup) childView).setClipToPadding(true);

? ? ? ? ? ? }

}

}

/**

* 設(shè)置透明

*/

? ? private static void setTransparentForWindow(Activity activity) {

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {

activity.getWindow().setStatusBarColor(Color.TRANSPARENT);

? ? ? ? ? ? activity.getWindow()

.getDecorView()

.setSystemUiVisibility(View.SYSTEM_UI_FLAG_LAYOUT_STABLE | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN);

? ? ? ? }else if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {

activity.getWindow()

.setFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS, WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);

? ? ? ? }

}

/**

* 使?fàn)顟B(tài)欄透明

*/

? ? @TargetApi(Build.VERSION_CODES.KITKAT)

private static void transparentStatusBar(Activity activity) {

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {

activity.getWindow().addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);

? ? ? ? ? ? activity.getWindow().clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);

? ? ? ? ? ? activity.getWindow().addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION);

? ? ? ? ? ? activity.getWindow().setStatusBarColor(Color.TRANSPARENT);

? ? ? ? }else {

activity.getWindow().addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);

? ? ? ? }

}

/**

* 創(chuàng)建半透明矩形 View

*

? ? * @param alpha 透明值

? ? * @return 半透明 View

*/

? ? private static ViewcreateTranslucentStatusBarView(Activity activity, int alpha) {

// 繪制一個(gè)和狀態(tài)欄一樣高的矩形

? ? ? ? View statusBarView =new View(activity);

? ? ? ? LinearLayout.LayoutParams params =

new LinearLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, getStatusBarHeight(activity));

? ? ? ? statusBarView.setLayoutParams(params);

? ? ? ? statusBarView.setBackgroundColor(Color.argb(alpha, 0, 0, 0));

? ? ? ? statusBarView.setId(FAKE_TRANSLUCENT_VIEW_ID);

? ? ? ? return statusBarView;

? ? }

/**

* 獲取狀態(tài)欄高度

*

? ? * @param context context

? ? * @return 狀態(tài)欄高度

*/

? ? private static int getStatusBarHeight(Context context) {

// 獲得狀態(tài)欄高度

? ? ? ? int resourceId = context.getResources().getIdentifier("status_bar_height", "dimen", "android");

? ? ? ? return context.getResources().getDimensionPixelSize(resourceId);

? ? }

/**

* 計(jì)算狀態(tài)欄顏色

*

? ? * @param color color值

? ? * @param alpha alpha值

? ? * @return 最終的狀態(tài)欄顏色

*/

? ? private static int calculateStatusColor(@ColorInt int color, int alpha) {

if (alpha ==0) {

return color;

? ? ? ? }

float a =1 - alpha /255f;

? ? ? ? int red = color >>16 &0xff;

? ? ? ? int green = color >>8 &0xff;

? ? ? ? int blue = color &0xff;

? ? ? ? red = (int) (red * a +0.5);

? ? ? ? green = (int) (green * a +0.5);

? ? ? ? blue = (int) (blue * a +0.5);

? ? ? ? return 0xff <<24 | red <<16 | green <<8 | blue;

? ? }

}

2.在AndroisManiFest.xml文件application標(biāo)簽設(shè)置theme:

android:theme="@style/TranslucentTheme"

3.在res/values文件夾styles.xml里面配置TranslucentTheme屬性:

<style name="TranslucentTheme" parent="AppTheme">

? ? <item name="windowActionBar">false

? ? <item name="windowNoTitle">true

</style>

4.代碼里面設(shè)置沉填,在onCreate方法setContentView(R.layout.xxx)設(shè)置如下:

getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_PAN);

setContentView(R.layout.xxx);

StatusBarUtil.setColorNoTranslucent(this, ContextCompat.getColor(mContext, R.color.main));

QMUIStatusBarHelper.setStatusBarDarkMode(this);//設(shè)置狀態(tài)欄白色字體

5.另外提供其他設(shè)置方法京闰,更多設(shè)置可以看StatusBarUtil工具類(lèi):

/**

* 如果需要圖片侵入狀態(tài)欄,可用此方法

*/

public void setStatusBarImg() {

StatusBarUtil.setTranslucentForCoordinatorLayout(this, 0);

}

/**

* 設(shè)置狀態(tài)欄白色背景翎猛, 黑色字體

*/

public void setStatusBarWhite() {

StatusBarUtil.setColorNoTranslucent(this, ContextCompat.getColor(mContext, R.color.white));

? ? QMUIStatusBarHelper.setStatusBarLightMode(this);//設(shè)置狀態(tài)欄黑色字體

}

到這里開(kāi)發(fā)就結(jié)束了瞭郑,可以去看看效果。

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末积锅,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子养盗,更是在濱河造成了極大的恐慌缚陷,老刑警劉巖,帶你破解...
    沈念sama閱讀 217,907評(píng)論 6 506
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件往核,死亡現(xiàn)場(chǎng)離奇詭異箫爷,居然都是意外死亡,警方通過(guò)查閱死者的電腦和手機(jī)聂儒,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 92,987評(píng)論 3 395
  • 文/潘曉璐 我一進(jìn)店門(mén)蝶缀,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái),“玉大人薄货,你說(shuō)我怎么就攤上這事“郏” “怎么了谅猾?”我有些...
    開(kāi)封第一講書(shū)人閱讀 164,298評(píng)論 0 354
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)。 經(jīng)常有香客問(wèn)我税娜,道長(zhǎng)坐搔,這世上最難降的妖魔是什么? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 58,586評(píng)論 1 293
  • 正文 為了忘掉前任敬矩,我火速辦了婚禮概行,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘弧岳。我一直安慰自己凳忙,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 67,633評(píng)論 6 392
  • 文/花漫 我一把揭開(kāi)白布禽炬。 她就那樣靜靜地躺著涧卵,像睡著了一般。 火紅的嫁衣襯著肌膚如雪腹尖。 梳的紋絲不亂的頭發(fā)上柳恐,一...
    開(kāi)封第一講書(shū)人閱讀 51,488評(píng)論 1 302
  • 那天,我揣著相機(jī)與錄音热幔,去河邊找鬼乐设。 笑死,一個(gè)胖子當(dāng)著我的面吹牛绎巨,可吹牛的內(nèi)容都是我干的近尚。 我是一名探鬼主播,決...
    沈念sama閱讀 40,275評(píng)論 3 418
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼认烁,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼肿男!你這毒婦竟也來(lái)了?” 一聲冷哼從身側(cè)響起却嗡,我...
    開(kāi)封第一講書(shū)人閱讀 39,176評(píng)論 0 276
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤舶沛,失蹤者是張志新(化名)和其女友劉穎,沒(méi)想到半個(gè)月后窗价,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體如庭,經(jīng)...
    沈念sama閱讀 45,619評(píng)論 1 314
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 37,819評(píng)論 3 336
  • 正文 我和宋清朗相戀三年撼港,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了坪它。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 39,932評(píng)論 1 348
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡帝牡,死狀恐怖往毡,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情靶溜,我是刑警寧澤开瞭,帶...
    沈念sama閱讀 35,655評(píng)論 5 346
  • 正文 年R本政府宣布懒震,位于F島的核電站,受9級(jí)特大地震影響嗤详,放射性物質(zhì)發(fā)生泄漏个扰。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 41,265評(píng)論 3 329
  • 文/蒙蒙 一葱色、第九天 我趴在偏房一處隱蔽的房頂上張望递宅。 院中可真熱鬧,春花似錦苍狰、人聲如沸办龄。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 31,871評(píng)論 0 22
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)土榴。三九已至,卻和暖如春响牛,著一層夾襖步出監(jiān)牢的瞬間玷禽,已是汗流浹背。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 32,994評(píng)論 1 269
  • 我被黑心中介騙來(lái)泰國(guó)打工呀打, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留矢赁,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 48,095評(píng)論 3 370
  • 正文 我出身青樓贬丛,卻偏偏與公主長(zhǎng)得像撩银,于是被迫代替她去往敵國(guó)和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子豺憔,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 44,884評(píng)論 2 354