V7包中的Theme.AppCompat主题系列中并无全屏样式,这个是为何,只有做者知道……android
解决办法:spa
自定义主题.net
<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>
https://blog.csdn.net/jhone_csdn/article/details/51240287code