android 开发 修改系统背景(状态栏颜色、导航栏颜色、标题栏颜色等等)

时间:2023-01-12 00:14:07

正常方式

1、打开values下的styles.xml

发现有以下代码:

<resources>

    <!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/myBarColor</item>
<item name="colorPrimaryDark">@color/myBarColor</item>
<item name="colorAccent">@color/colorAccent</item>
</style> </resources>

那么其中的colorPrimarycolorPrimaryDarkcolorAccent分别代表什么呢?看下图就可以一目了然:

android 开发 修改系统背景(状态栏颜色、导航栏颜色、标题栏颜色等等)

2、更改colorPrimarycolorPrimaryDark

colorPrimarycolorPrimaryDark的颜色换成你需要改变的颜色即可。

比如,我在values/colors.xml中定义了颜色:

<color name="myBarColor">#0682AF</color>

那么将colorPrimarycolorPrimaryDark的颜色换成@color/myBarColor即可:

<item name="colorPrimary">@color/myBarColor</item>
<item name="colorPrimaryDark">@color/myBarColor</item>

其他方式,第一种方法:

1、隐藏状态栏

在onCreate方法里面添加页面状态

View decorView = getWindow().getDecorView();//获取屏幕的decorView
decorView.setSystemUiVisibility(View.SYSTEM_UI_FLAG_FULLSCREEN);//设置全屏

2.修改状态栏的背景

在setContentView();方法 上方添加代码:

    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
Window window = getWindow();
//设置修改状态栏
window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);
//设置状态栏的颜色,和你的app主题或者标题栏颜色设置一致就ok了
window.setStatusBarColor(getResources().getColor(R.color.umeng_blue));
}

其他方式,第二种方法:

1、在setContentView()之前添加:

private static void setAndroidNativeLightStatusBar(Activity activity, boolean dark) {
View decor = activity.getWindow().getDecorView();
if (dark) {
decor.setSystemUiVisibility(View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN | View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR);//设置全屏和状态栏字体颜色
} else {
decor.setSystemUiVisibility(View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN | View.SYSTEM_UI_FLAG_LAYOUT_STABLE);//设置全屏和状态栏字体颜色
}
  getWindow().setStatusBarColor(Color.parseColor("#696969"));// 设置状态栏为灰色
}

2、在布局文件xml中添加预留任务栏控件

android:fitsSystemWindows="true"

获取状态栏高度

/**
* 获取状态栏高度
* @param context
* @return
*/
public static int getStatusBarHeight(Context context) {
Resources resources = context.getResources();
int resourceId = resources.getIdentifier("status_bar_height", "dimen", "android");
int height = resources.getDimensionPixelSize(resourceId);
return height;
}