Android全屏
android全屏实现
0X00实现
代码如下:
style.xml文件中写一个style
1
2
3 <style name="quanping" parent="Theme.AppCompat.DayNight.NoActionBar">
<item name="android:windowFullscreen">true</item>
</style>
解释:以上代码
parent="Theme.AppCompat.DayNight.NoActionBar"
实现去除标题栏,<item name="android:windowFullscreen">true</item>
实现全屏
AndroidMainifest.xml文件中应用该style,在application(对全部活动),或者activity(对单个活动)标签里面添加
1 android:theme="@style/quanping"
0X01总结
感觉不是什么特别合理的解决方案,有时间可以学一下沉浸状态栏