FragmentMaster icon indicating copy to clipboard operation
FragmentMaster copied to clipboard

How can I set the Fragment Background "transparent"

Open ggchxx opened this issue 9 years ago • 1 comments

How can I set the Fragment Background "transparent"

ggchxx avatar Feb 18 '16 16:02 ggchxx

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)

alphater avatar Jun 29 '17 09:06 alphater