res-values-styles.xml下添加
<!--Activity背景全透明--> <style name="activityBgTranslucent" parent="Theme.AppCompat.Light.NoActionBar"> <item name="android:windowBackground">@color/translucent</item> <item name="android:windowIsTranslucent">true</item> </style>
<color name="translucent">#01000000</color>
AndroidMainfest.xml中Activity属性添加
android:exported="true" android:theme="@style/activityBgTranslucent"