FragmentMaster
FragmentMaster copied to clipboard
How can I set the Fragment Background "transparent"
How can I set the Fragment Background "transparent"
I also want to solve this problem, and finally found the solution
<style name="Translucent" parent="AppTheme.NoActionBar"> <item name="android:windowBackground">@android:color/transparent</item> <item name="android:colorBackgroundCacheHint">@null</item> <item name="android:windowIsTranslucent">true</item> </style>
@Configuration(theme = R.style.Translucent)