From 38796aeb892379b8c2b7e4e1d7af00c4c050e8dc Mon Sep 17 00:00:00 2001 From: Fup Duck Date: Thu, 23 Nov 2017 11:34:52 +0100 Subject: Add Splash StartActivity * added Splash StartActivity to handle updates and initialization * created global Constants * renamed EIP Constants --- app/src/main/res/drawable-hdpi/splash_background.png | Bin 0 -> 66619 bytes .../main/res/drawable-land-hdpi/splash_background.png | Bin 0 -> 68637 bytes .../main/res/drawable-land-ldpi/splash_background.png | Bin 0 -> 43127 bytes .../main/res/drawable-land-mdpi/splash_background.png | Bin 0 -> 33924 bytes .../res/drawable-land-xxxhdpi/splash_background.png | Bin 0 -> 182692 bytes app/src/main/res/drawable-ldpi/mask.png | Bin 0 -> 8743 bytes app/src/main/res/drawable-ldpi/splash_background.png | Bin 0 -> 41839 bytes app/src/main/res/drawable-mdpi/mask.png | Bin 0 -> 6324 bytes app/src/main/res/drawable-mdpi/splash_background.png | Bin 0 -> 32718 bytes app/src/main/res/drawable-xxxhdpi/mask.png | Bin 0 -> 43251 bytes .../main/res/drawable-xxxhdpi/splash_background.png | Bin 0 -> 187062 bytes app/src/main/res/drawable/splash_page.xml | 10 ++++++++++ app/src/main/res/values/attrs.xml | 8 -------- app/src/main/res/values/colors.xml | 5 +++++ app/src/main/res/values/themes.xml | 12 ++++++++++++ 15 files changed, 27 insertions(+), 8 deletions(-) create mode 100644 app/src/main/res/drawable-hdpi/splash_background.png create mode 100644 app/src/main/res/drawable-land-hdpi/splash_background.png create mode 100644 app/src/main/res/drawable-land-ldpi/splash_background.png create mode 100644 app/src/main/res/drawable-land-mdpi/splash_background.png create mode 100644 app/src/main/res/drawable-land-xxxhdpi/splash_background.png create mode 100644 app/src/main/res/drawable-ldpi/mask.png create mode 100644 app/src/main/res/drawable-ldpi/splash_background.png create mode 100644 app/src/main/res/drawable-mdpi/mask.png create mode 100644 app/src/main/res/drawable-mdpi/splash_background.png create mode 100644 app/src/main/res/drawable-xxxhdpi/mask.png create mode 100644 app/src/main/res/drawable-xxxhdpi/splash_background.png create mode 100644 app/src/main/res/drawable/splash_page.xml delete mode 100644 app/src/main/res/values/attrs.xml create mode 100644 app/src/main/res/values/colors.xml create mode 100644 app/src/main/res/values/themes.xml (limited to 'app/src/main/res') diff --git a/app/src/main/res/drawable-hdpi/splash_background.png b/app/src/main/res/drawable-hdpi/splash_background.png new file mode 100644 index 00000000..11dfd005 Binary files /dev/null and b/app/src/main/res/drawable-hdpi/splash_background.png differ diff --git a/app/src/main/res/drawable-land-hdpi/splash_background.png b/app/src/main/res/drawable-land-hdpi/splash_background.png new file mode 100644 index 00000000..c2e123ce Binary files /dev/null and b/app/src/main/res/drawable-land-hdpi/splash_background.png differ diff --git a/app/src/main/res/drawable-land-ldpi/splash_background.png b/app/src/main/res/drawable-land-ldpi/splash_background.png new file mode 100644 index 00000000..29f9e7cb Binary files /dev/null and b/app/src/main/res/drawable-land-ldpi/splash_background.png differ diff --git a/app/src/main/res/drawable-land-mdpi/splash_background.png b/app/src/main/res/drawable-land-mdpi/splash_background.png new file mode 100644 index 00000000..bf43f632 Binary files /dev/null and b/app/src/main/res/drawable-land-mdpi/splash_background.png differ diff --git a/app/src/main/res/drawable-land-xxxhdpi/splash_background.png b/app/src/main/res/drawable-land-xxxhdpi/splash_background.png new file mode 100644 index 00000000..12a9e8a8 Binary files /dev/null and b/app/src/main/res/drawable-land-xxxhdpi/splash_background.png differ diff --git a/app/src/main/res/drawable-ldpi/mask.png b/app/src/main/res/drawable-ldpi/mask.png new file mode 100644 index 00000000..4e22d99f Binary files /dev/null and b/app/src/main/res/drawable-ldpi/mask.png differ diff --git a/app/src/main/res/drawable-ldpi/splash_background.png b/app/src/main/res/drawable-ldpi/splash_background.png new file mode 100644 index 00000000..eaae5efb Binary files /dev/null and b/app/src/main/res/drawable-ldpi/splash_background.png differ diff --git a/app/src/main/res/drawable-mdpi/mask.png b/app/src/main/res/drawable-mdpi/mask.png new file mode 100644 index 00000000..e53cb15c Binary files /dev/null and b/app/src/main/res/drawable-mdpi/mask.png differ diff --git a/app/src/main/res/drawable-mdpi/splash_background.png b/app/src/main/res/drawable-mdpi/splash_background.png new file mode 100644 index 00000000..4df57929 Binary files /dev/null and b/app/src/main/res/drawable-mdpi/splash_background.png differ diff --git a/app/src/main/res/drawable-xxxhdpi/mask.png b/app/src/main/res/drawable-xxxhdpi/mask.png new file mode 100644 index 00000000..4297d90c Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/mask.png differ diff --git a/app/src/main/res/drawable-xxxhdpi/splash_background.png b/app/src/main/res/drawable-xxxhdpi/splash_background.png new file mode 100644 index 00000000..4ad0e2c3 Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/splash_background.png differ diff --git a/app/src/main/res/drawable/splash_page.xml b/app/src/main/res/drawable/splash_page.xml new file mode 100644 index 00000000..1d8a6bf6 --- /dev/null +++ b/app/src/main/res/drawable/splash_page.xml @@ -0,0 +1,10 @@ + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/values/attrs.xml b/app/src/main/res/values/attrs.xml deleted file mode 100644 index cb503b86..00000000 --- a/app/src/main/res/values/attrs.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/app/src/main/res/values/colors.xml b/app/src/main/res/values/colors.xml new file mode 100644 index 00000000..9f5d8813 --- /dev/null +++ b/app/src/main/res/values/colors.xml @@ -0,0 +1,5 @@ + + + #8080b0 + #555575 + diff --git a/app/src/main/res/values/themes.xml b/app/src/main/res/values/themes.xml new file mode 100644 index 00000000..80607409 --- /dev/null +++ b/app/src/main/res/values/themes.xml @@ -0,0 +1,12 @@ + + + + + -- cgit v1.2.3