summaryrefslogtreecommitdiffstats
path: root/experimental/qt5-intro-android/android/res/layout
diff options
context:
space:
mode:
authorEskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@digia.com>2013-05-30 16:52:15 +0200
committerEskil Abrahamsen-Blomfeldt <eskil.abrahamsen-blomfeldt@digia.com>2013-05-31 11:28:23 +0300
commite76ea713e98a3734f0e63961e855d748096990e3 (patch)
tree54ee522ab564d2f4d5b042c3610710cec83bc011 /experimental/qt5-intro-android/android/res/layout
parent792602c8aaf387556c0035fc894493a20699c7e8 (diff)
Several changes to Qt 5 Android app
Lots of minor stuff from collected feedback. Also added more generated files to avoid Creator overwriting them. Change-Id: I22e10ac19860d1e67f136d718557b2bc2bd04dff Reviewed-by: Eskil Abrahamsen-Blomfeldt <eskil.abrahamsen-blomfeldt@digia.com>
Diffstat (limited to 'experimental/qt5-intro-android/android/res/layout')
-rw-r--r--experimental/qt5-intro-android/android/res/layout/splash.xml13
1 files changed, 13 insertions, 0 deletions
diff --git a/experimental/qt5-intro-android/android/res/layout/splash.xml b/experimental/qt5-intro-android/android/res/layout/splash.xml
new file mode 100644
index 0000000..6b0d492
--- /dev/null
+++ b/experimental/qt5-intro-android/android/res/layout/splash.xml
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="utf-8"?>
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:orientation="vertical"
+ android:layout_width="fill_parent"
+ android:layout_height="fill_parent"
+ android:layout_gravity="center"
+ >
+ <ImageView
+ android:layout_width="fill_parent"
+ android:layout_height="fill_parent"
+ android:scaleType="fitXY"
+ />
+</LinearLayout>