沉浸式状态栏简易工具

本工具类拷贝别人代码,非自己原创

 

1.首先导入依赖

implementation 'com.gyf.barlibrary:barlibrary:2.2.9'

 

2.在代码中使用

在setContentView之后,进行初始化       

ImmersionBar.with(this).init();

 

在onDestory()方法中销毁,不然容易造成内存泄露

 ImmersionBar.with(this).destroy(); 

 

3.配置xml文件

该属性作用是,使其位于原来状态栏之下,避免堆在一起

android:fitsSystemWindows="true"

 

4.设置theme主题

设置为没有标题框的主题

android:theme="@style/Theme.AppCompat.NoActionBar"

你可能感兴趣的:(沉浸式状态栏简易工具)