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

时间:2022-09-20 03:58:19

一般情况下在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.

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


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



修改成如下就可以了:

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