Android设置Activity背景为透明style发生的错误

来源:互联网 发布:淘宝5金冠店铺有哪些 编辑:程序博客网 时间:2024/05/17 13:43

一般情况下在manifest.xml中设置透明主题背景就可以了。

@android:style/Theme.Translucent  @android:style/Theme.Translucent.NoTitleBar  @android:style/Theme.Translucent.NoTitleBar.Fullscreen  


但是自己在尝试的过程中发生了如下错误,java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendent) with this activity.






修改成如下就可以了:

<activity            android:name=".ui.my.activity.DiversionUrlActivity"            android:theme="@style/Theme.Translucent"            android:screenOrientation="portrait" />