Skip to content

Instantly share code, notes, and snippets.

@insthync
Last active September 24, 2018 22:14
Show Gist options
  • Save insthync/f7f2a2e6ab04633d1441c8da49162e21 to your computer and use it in GitHub Desktop.
Save insthync/f7f2a2e6ab04633d1441c8da49162e21 to your computer and use it in GitHub Desktop.
Example transparent activity theme
<style name="Theme.Transparent" parent="AppTheme">
<item name="android:windowIsTranslucent">true</item>
<item name="android:windowBackground">@android:color/transparent</item>
<item name="android:windowContentOverlay">@null</item>
<item name="android:windowNoTitle">true</item>
<item name="android:windowIsFloating">true</item>
<item name="android:backgroundDimEnabled">false</item>
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment