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