first.
This commit is contained in:
11
android/res/anim/splash_rotation.xml
Normal file
11
android/res/anim/splash_rotation.xml
Normal file
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:interpolator="@android:anim/linear_interpolator">
|
||||
<rotate
|
||||
android:duration="2000"
|
||||
android:fromDegrees="0"
|
||||
android:pivotX="49.566%"
|
||||
android:pivotY="66.65%"
|
||||
android:repeatCount="infinite"
|
||||
android:toDegrees="360"/>
|
||||
</set>
|
||||
BIN
android/res/drawable-hdpi/ic_launcher.png
Normal file
BIN
android/res/drawable-hdpi/ic_launcher.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 5.4 KiB |
BIN
android/res/drawable-hdpi/splash_circle.png
Normal file
BIN
android/res/drawable-hdpi/splash_circle.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 6.4 KiB |
BIN
android/res/drawable-hdpi/splash_droid.png
Normal file
BIN
android/res/drawable-hdpi/splash_droid.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 28 KiB |
BIN
android/res/drawable-hdpi/splash_hands.png
Normal file
BIN
android/res/drawable-hdpi/splash_hands.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 9.0 KiB |
BIN
android/res/drawable-ldpi/ic_launcher.png
Normal file
BIN
android/res/drawable-ldpi/ic_launcher.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 2.1 KiB |
BIN
android/res/drawable-mdpi/ic_launcher.png
Normal file
BIN
android/res/drawable-mdpi/ic_launcher.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 3.3 KiB |
6
android/res/drawable/splash_background.xml
Normal file
6
android/res/drawable/splash_background.xml
Normal file
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
|
||||
<corners android:radius="20dp"/>
|
||||
<padding android:left="10dp" android:right="10dp" android:top="10dp" android:bottom="10dp"/>
|
||||
<solid android:color="@android:color/black"/>
|
||||
</shape>
|
||||
59
android/res/layout/splashscreen.xml
Normal file
59
android/res/layout/splashscreen.xml
Normal file
@@ -0,0 +1,59 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="fill_parent">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerInParent="true"
|
||||
android:orientation="vertical"
|
||||
android:layout_margin="10dp"
|
||||
android:background="@drawable/splash_background" >
|
||||
|
||||
<RelativeLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center"
|
||||
android:gravity="center" >
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/splash_droid"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:src="@drawable/splash_droid" >
|
||||
</ImageView>
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/splash_circles"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:src="@drawable/splash_circle" >
|
||||
</ImageView>
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/splash_droid_hands"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:src="@drawable/splash_hands" >
|
||||
</ImageView>
|
||||
</RelativeLayout>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/splash_app_name"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:layout_marginTop="18dp"
|
||||
android:text="Application name"
|
||||
android:textSize="30sp" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:layout_marginTop="18dp"
|
||||
android:text="Please wait for the application to load..." />
|
||||
</LinearLayout>
|
||||
|
||||
</RelativeLayout>
|
||||
6
android/res/values/strings.xml
Normal file
6
android/res/values/strings.xml
Normal file
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
|
||||
<string name="app_name">advent</string>
|
||||
|
||||
</resources>
|
||||
Reference in New Issue
Block a user