Skip to content

Instantly share code, notes, and snippets.

@kimuradev
Last active August 2, 2019 13:00
Show Gist options
  • Save kimuradev/56ff29cac8dbced64e7bb7e6511c87fd to your computer and use it in GitHub Desktop.
Save kimuradev/56ff29cac8dbced64e7bb7e6511c87fd to your computer and use it in GitHub Desktop.
PWA Medium - styles
<resources>
<!-- Theme to create a blank screen while the TWA is opening -->
<style name="Theme.LauncherActivity" parent="Theme.AppCompat.NoActionBar">
<item name="android:windowAnimationStyle">@null</item>
<item name="android:windowIsTranslucent">true</item>
<item name="android:windowNoTitle">true</item>
<item name="android:windowBackground">@android:color/transparent</item>
<item name="android:backgroundDimEnabled">false</item>
</style>
</resources>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment