Lollipop 中的透明主题崩溃
Transparent Theme Crashes in Lollipop
我想在我的一个活动[=12=中使用透明主题 ]
我已经试过了:
<style name="Theme.Transparent" parent="android:Theme">
<item name="android:windowIsTranslucent">true</item>
<item name="android:windowBackground">@android:color/transparent</item>
<item name="android:windowContentOverlay">@null</item>
<item name="android:windowNoTitle">true</item>
<item name="android:windowIsFloating">true</item>
<item name="android:backgroundDimEnabled">false</item>
</style>
它在 pre lollipop 中工作正常,但在 lollipop 中它不起作用(强制关闭)
那我试过这个:
android:theme="@android:style/Theme.Translucent"
它不适用于 21 和 21 之前的版本
所以请帮助解决这个问题。
放入你的布局
android:alpha="0.00"
有效
终于解决了这个问题
我只是为这个主题设置了主色 - 重音 - 和主深色,效果非常好:)
我想在我的一个活动[=12=中使用透明主题 ]
我已经试过了:
<style name="Theme.Transparent" parent="android:Theme">
<item name="android:windowIsTranslucent">true</item>
<item name="android:windowBackground">@android:color/transparent</item>
<item name="android:windowContentOverlay">@null</item>
<item name="android:windowNoTitle">true</item>
<item name="android:windowIsFloating">true</item>
<item name="android:backgroundDimEnabled">false</item>
</style>
它在 pre lollipop 中工作正常,但在 lollipop 中它不起作用(强制关闭)
那我试过这个:
android:theme="@android:style/Theme.Translucent"
它不适用于 21 和 21 之前的版本
所以请帮助解决这个问题。
放入你的布局
android:alpha="0.00"
有效
终于解决了这个问题
我只是为这个主题设置了主色 - 重音 - 和主深色,效果非常好:)