Skip to content

Instantly share code, notes, and snippets.

@baneizalfe
Created July 10, 2014 22:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save baneizalfe/a95162c285e9ed9dc2e3 to your computer and use it in GitHub Desktop.
Save baneizalfe/a95162c285e9ed9dc2e3 to your computer and use it in GitHub Desktop.
If your app is using background image for splash, display it as soon as posible, with full width on each device, centered on top
<?xml version="1.0" encoding="utf-8"?>
<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
android:dither="true"
android:gravity="top|fill_horizontal"
android:src="@drawable/splash_bg"
android:tileMode="disabled" />
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="Theme.MyFullTheme" parent="android:Theme.Light.NoTitleBar">
<item name="android:windowBackground">@drawable/app_bg</item>
</style>
</resources>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment