此文章记录怎样实现Android沉浸式状态栏
方法一:也是最简单的方法,在style文件中做如下配置
<style name="TranslucentTheme" parent="Theme.AppCompat.Light.NoActionBar">
<item name="android:windowTranslucentStatus">false</item>
<item name="android:windowTranslucentNavigation">true</item>
<!--Android 5.x开始需要把颜色设置透明,否则导航栏会呈现系统默认的浅灰色-->
<item name="android:statusBarColor">@android:color/transparent</item>
</style>
在对应的activity中引入属性即可:
<activity android:name=".MainActivity"
android:theme="@style/TranslucentTheme"/>
方法二:
1)、获取actionBar,并将actionBar隐藏 ,注意两种方法对应不同版本,根据版本选择其中一种。
ActionBar supportActionBar = getSupportActionBar();
android.app.ActionBar actionBar = getActionBar();
supportActionBar.hide();
隐藏actionBar还有一种方法
requestWindowFeature(Window.FEATURE_NO_TITLE);
setContentView(R.layout.activity_main);
在setContentView(R.layout.activity_main)前调用requestWindowFeature,注意经试验此方法只是在当前Activity继承自Activity才可以生效,继承自AppCompatActivity不会生效。
2)、通过反射获取状态栏的高度。
/**
* 通过反射获取状态栏高度
* @return
*/
private int getStatusBarHeight(){
try {
//通过反射获取到类
Class<?> aClass = Class.forName("com.android.internal.R$dimen");
//创建对象
Object o = aClass.newInstance();
//获取对应属性
Field status_bar_height = aClass.getField("status_bar_height");
//获取对应属性的值
Object o1 = status_bar_height.get(o);
int height = Integer.parseInt(o1.toString());
//返回值
return getResources().getDimensionPixelOffset(height);
} catch (ClassNotFoundException e) {
e.printStackTrace();
} catch (IllegalAccessException e) {
e.printStackTrace();
} catch (InstantiationException e) {
e.printStackTrace();
} catch (NoSuchFieldException e) {
e.printStackTrace();
}
return 0;
}
3)、将状态栏设置为透明,并将下面的布局高度延伸至导航栏高度
/**
* 系统版本4.4以上才可以设置沉浸式状态栏
*/
private void setStatus(){
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT){
//设置状态栏透明
getWindow().addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
mTextView=findViewById(R.id.my_text);
final int statusBarHeight = getStatusBarHeight();
mTextView.post(new Runnable() {
@Override
public void run() {
int height = mTextView.getHeight();
ViewGroup.LayoutParams layoutParams = mTextView.getLayoutParams();
layoutParams.height = height+statusBarHeight;
mTextView.setLayoutParams(layoutParams);
}
});
}
}
以上两种方法仅为个人记录整理,欢迎大家指出不足和可优化的地方。