Project

General

Profile

Download (848 Bytes) Statistics
| Branch: | Revision:

sokoban / distorted-sokoban / src / main / res / layout / splash.xml @ aad987a7

1
<?xml version="1.0" encoding="utf-8"?>
2
<RelativeLayout
3
  xmlns:android="http://schemas.android.com/apk/res/android"
4
  android:layout_width="fill_parent"
5
  android:layout_height="fill_parent"
6
  android:gravity="center"
7
  android:background="#FFFFFF">
8
  <ImageView 
9
      android:id="@+id/splashimage"
10
      android:src="@drawable/splash"
11
      android:layout_gravity="center"
12
      android:layout_width="wrap_content"
13
      android:layout_height="wrap_content"
14
      android:layout_centerHorizontal="true"/>
15
  <TextView 
16
  	  android:id="@+id/splashtext"
17
  	  android:layout_width="wrap_content"
18
      android:layout_height="wrap_content"
19
      android:text="@string/splash"
20
      android:textColor="#65bd45"
21
      android:textSize="24dp"
22
      android:layout_centerHorizontal="true"
23
      android:layout_below="@id/splashimage"/>
24
</RelativeLayout>
(3-3/3)