一.5.0及以上实现沉浸式状态栏
方式1:通过设置主题达到,状态栏的颜色跟随你的主题里面的colorPrimaryDark属性。
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
方式2:通过代码实现(只对API 21 及以上才能通过代码实现),状态栏显示为红色
getWindow().setStatusBarColor(Color.RED);
方式3:通过在主题中设置样式属性解决,
<item name="android:statusBarColor">@color/color_red</item>
二.4.4 小于android 5.0实现沉浸式状态栏(小于4.4就不能实现),可以设置状态栏为透明的
方式1:通过在主题中设置样式属性解决,(不推荐使用,兼容性不好)
<item name="android:windowTranslucentStatus">true</item>
方式2:在代码里面解决,设置为透明的属性(在布局文件中加入Toolbar)
getWindow().addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
setContentView(R.layout.activity_main);
出现副作用: APP的内容顶到最上面去了,即状态栏会遮挡一部分界 面。很坑 解决办法(有几种): 1)给Toolbar设置android:fitsSystemWindows="true" 该属性的作用:设置布局时,是否考虑当前系统窗口的布局,如果为true就会调整整个系统窗口 布局(包括状态栏的view)以适应你的布局。但是又出现了一个bug,当里面有ScrollView并且ScrollView里面有Edittext的时候,就会出现软键盘一弹起就会把toolbar拉下来,很难看这种办法有什么价值呢?如果里面没有ScrollView就可以用。
解决办法:给布局最外层容器设置android:fitsSystemWindows="true" 可以达到状态栏透明,并且露出底色---android:windowBackground颜色。
巧妙地解决:步骤:
1.在最外层容器设置android:fitsSystemWindows="true"
2.直接将最外层容器(也可以修改-android:windowBackground颜色)设置成状态栏想要的颜色
3.下面剩下的布局再包裹一层正常的背景颜色
方式3:在布局文件中添加Toobar,修改Toolbar的高度,步骤:
1.不要给Toolbar设置android:fitsSystemWindows="true"
2.获取状态栏的高度.
源码:
<!-- Height of the status bar -->
<dimen name="status_bar_height">24dp</dimen>
<!-- Height of the bottom navigation / system bar. -->
<dimen name="navigation_bar_height">48dp</dimen>
反射手机运行的类(R类):android.R.dimen.status_bar_height.
3.在布局文件中添加Toobar,给Toolbar设置padding值
代码:
public class MainActivity extends AppCompatActivity {
@TargetApi(Build.VERSION_CODES.LOLLIPOP)
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
getWindow().addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
setContentView(R.layout.activity_main);
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
toolbar.setTitleTextColor(Color.WHITE);
ViewGroup.LayoutParams params = toolbar.getLayoutParams();
params.height += getStatusBarHeight(this);
toolbar.setLayoutParams(params);
toolbar.setPadding(toolbar.getPaddingLeft(),
toolbar.getPaddingTop()+getStatusBarHeight(this),
toolbar.getPaddingRight(),
toolbar.getPaddingBottom()
);
}
private int getStatusBarHeight(Context context) {
int statusBarHeight = -1;
//反射手机运行的类(R类):android.R.dimen.status_bar_height.
try {
Class<?> clazz = Class.forName("com.android.internal.R$dimen");
Object newInstance = clazz.newInstance();
String statusBarHeightStr = clazz.getField("status_bar_height").get(newInstance).toString();
//获得status_bar_height的id
int id = Integer.parseInt(statusBarHeightStr);
//将DP变成px
statusBarHeight = context.getResources().getDimensionPixelSize(id);
} catch (Exception e) {
e.printStackTrace();
}
return statusBarHeight;
}
}
布局文件:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
app:title="网易新闻"
android:background="@color/colorPrimaryDark"
android:layout_width="match_parent"
android:layout_height="?actionBarSize">
</android.support.v7.widget.Toolbar>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"/>
</LinearLayout>
BaseActivity的封装:
public class BaseActivity extends AppCompatActivity {
@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT && Build.VERSION.SDK_INT <Build.VERSION_CODES.LOLLIPOP){
//在[4.4 , 5.0)设置状态栏为透明
getWindow().addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
}
super.onCreate(savedInstanceState);
}
public void setOrChangeTransluentBar(Toolbar toolbar,int statusBarColor){
toolbar.setBackgroundColor(statusBarColor);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT && Build.VERSION.SDK_INT <Build.VERSION_CODES.LOLLIPOP){
//在[4.4 , 5.0)设置状态栏为透明
ViewGroup.LayoutParams params = toolbar.getLayoutParams();
params.height += getStatusBarHeight(this);
toolbar.setLayoutParams(params);
toolbar.setPadding(toolbar.getPaddingLeft(),
toolbar.getPaddingTop()+getStatusBarHeight(this),
toolbar.getPaddingRight(),
toolbar.getPaddingBottom()
);
}
}
private int getStatusBarHeight(Context context) {
int statusBarHeight = -1;
//反射手机运行的类(R类):android.R.dimen.status_bar_height.
try {
Class<?> clazz = Class.forName("com.android.internal.R$dimen");
Object newInstance = clazz.newInstance();
String statusBarHeightStr = clazz.getField("status_bar_height").get(newInstance).toString();
//获得status_bar_height的id
int id = Integer.parseInt(statusBarHeightStr);
//将DP变成px
statusBarHeight = context.getResources().getDimensionPixelSize(id);
} catch (Exception e) {
e.printStackTrace();
}
return statusBarHeight;
}
}
主题:
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
在4.4上运行效果图:
在6.0上运行效果图