diff options
Diffstat (limited to 'android-mobile/res')
-rw-r--r-- | android-mobile/res/drawable/splash.xml | 12 | ||||
-rw-r--r-- | android-mobile/res/drawable/subsurface_mobile_splash.9.png | bin | 0 -> 95837 bytes | |||
-rw-r--r-- | android-mobile/res/values/apptheme.xml | 6 |
3 files changed, 18 insertions, 0 deletions
diff --git a/android-mobile/res/drawable/splash.xml b/android-mobile/res/drawable/splash.xml new file mode 100644 index 000000000..a27a22df4 --- /dev/null +++ b/android-mobile/res/drawable/splash.xml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="utf-8"?> +<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> + <item> + <shape android:shape="rectangle" > + <solid android:color="#000000FF"/> + </shape> + </item> + <item> + <bitmap android:src="@drawable/subsurface_mobile_splash" + android:gravity="center" /> + </item> +</layer-list> diff --git a/android-mobile/res/drawable/subsurface_mobile_splash.9.png b/android-mobile/res/drawable/subsurface_mobile_splash.9.png Binary files differnew file mode 100644 index 000000000..575b300cd --- /dev/null +++ b/android-mobile/res/drawable/subsurface_mobile_splash.9.png diff --git a/android-mobile/res/values/apptheme.xml b/android-mobile/res/values/apptheme.xml new file mode 100644 index 000000000..adec2328c --- /dev/null +++ b/android-mobile/res/values/apptheme.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <style name="AppTheme" parent="@android:style/Theme.DeviceDefault.Light.NoActionBar"> + <item name="android:windowBackground">@drawable/splash</item> + </style> +</resources> |