Reputation: 3
I want this kind of translucent
activity/fragment
for android
any help would be appreciated
Android activity/fragment overlapping here just like this one:
Upvotes: 0
Views: 43
Reputation: 126
use this style for your app :
<style name="AppTheme.NoBackGround">
<item name="android:windowIsTranslucent">true</item>
<item name="android:windowContentOverlay">@null</item>
<item name="android:windowBackground">@color/transparent</item>
<item name="android:colorBackgroundCacheHint">@color/transparent</item>
</style>
then set the blur and transparent background on the activity
Upvotes: 1