Skip to content

Instantly share code, notes, and snippets.

@prdpspkt
Created October 29, 2018 04:36
Show Gist options
  • Save prdpspkt/16fb3124bb4972bee918d39caba0dcdc to your computer and use it in GitHub Desktop.
Save prdpspkt/16fb3124bb4972bee918d39caba0dcdc to your computer and use it in GitHub Desktop.
Full Screen Activity with AppCompactActivity for Splash Screen
<activity
android:name=".activities.FullViewActivity"
android:theme="@style/Theme.AppCompat.Light.NoActionBar.FullScreen"
/>
<style name="Theme.AppCompat.Light.NoActionBar.FullScreen" parent="@style/Theme.AppCompat.Light.NoActionBar">
<item name="android:windowNoTitle">true</item>
<item name="android:windowActionBar">false</item>
<item name="android:windowFullscreen">true</item>
<item name="android:windowContentOverlay">@null</item>
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment