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