美文网首页
解决activity加上Theme.Translucent.No

解决activity加上Theme.Translucent.No

作者: sirai | 来源:发表于2017-06-02 20:33 被阅读387次

自定义style 继承Theme.Translucent.NoTitleBar


<style name="My.Translucent" parent=" @android :style/Theme.Translucent.NoTitleBar">
        <item name="android:windowBackground"> @android :color/transparent</item>
        <item name="android:colorBackgroundCacheHint"> @android :color/transparent</item>
        <item name="android:windowIsTranslucent">false</item>
        <item name="android:windowAnimationStyle"> @android :style/Animation</item>
</style>

相关文章

网友评论

      本文标题:解决activity加上Theme.Translucent.No

      本文链接:https://www.haomeiwen.com/subject/shoufxtx.html