AppCompat 主题中全屏模式

遇到的问题

  • V7 包中我们最常用的 Theme.AppCompat 主题系列中没有全屏模式,在网上查询了一下才得以解决

参考方案链接

Full Screen Theme for AppCompat

参考解决方案

当你在你的应用中使用 Theme.AppCom (全屏主题),你可以通过添加如下样式的代码使用全屏主题

1
2
3
4
5
6
7
<style name="Theme.AppCompat.Light.NoActionBar.FullScreen"
parent="@style/Theme.AppCompat.Light">
<item name="windowNoTitle">true</item>
<item name="windowActionBar">false</item>
<item name="android:windowFullscreen">true</item>
<item name="android:windowContentOverlay">@null</item>
</style>

然后在你的的清单文件中显示出来。

1
2
3
4
<activity
android:name=".activities.FullViewActivity"
android:theme="@style/Theme.AppCompat.Light.NoActionBar.FullScreen"
/>
坚持原创技术分享,您的支持将鼓励我继续创作!