lixplor / android-Q-A

🐞 android related questions and answers
0 stars 0 forks source link

AppCompat的Theme没有全屏和透明 #53

Closed lixplor closed 7 years ago

lixplor commented 7 years ago

AppCompat的Theme没有全屏和透明

lixplor commented 7 years ago

原因: 官方没给 解决: 自己定义, 例如

<!--Translucent fullscreen theme support AppCompat-->
<style name="Theme.AppCompat.Light.Translucent.NoActionBar.FullScreen" parent="@style/Theme.AppCompat.Light">
   <item name="android:windowBackground">@android:color/transparent</item>
   <item name="android:colorBackgroundCacheHint">@null</item>
   <item name="android:windowIsTranslucent">true</item>
   <item name="android:windowAnimationStyle">@android:style/Animation</item>
   <item name="windowNoTitle">true</item>
   <item name="windowActionBar">false</item>
   <item name="android:windowFullscreen">true</item>
   <item name="android:windowContentOverlay">@null</item>
</style>

<!--Translucent not-fullscreen no-actionbar theme support AppCompat-->
<style name="Theme.AppCompat.Light.Translucent.NoActionBar" parent="Theme.AppCompat.Light.Translucent.NoActionBar.FullScreen">
   <item name="android:windowFullscreen">false</item>
</style>