<!-- Base application theme. --> <style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar"> <!-- Customize your theme here. --> <item name="colorPrimary">@color/colorPrimary</item> <item name="colorPrimaryDark">@color/colorPrimaryDark</item> <item name="colorAccent">@color/colorAccent</item>
//主要是这两句,全屏显示和透明启动加上即可,最后在活动那里引用此风格ok! <item name="android:windowFullscreen">true</item> <item name="android:windowIsTranslucent">true</item>
</style>