blob: da258b76e5b7058d2b077835e118a62a55470cc1 [file] [log] [blame]
Alexandre Lision8af73cb2013-12-10 14:11:20 -05001<?xml version="1.0" encoding="utf-8"?>
2<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 android:layout_width="fill_parent"
4 android:layout_height="fill_parent"
5 android:orientation="vertical" >
6
7 <ImageView
8 android:id="@+id/imageApp"
9 android:layout_width="wrap_content"
10 android:layout_height="wrap_content"
11 android:layout_above="@+id/textApp"
12 android:layout_centerHorizontal="true"
13 android:contentDescription="@string/app_name"
14 android:src="@drawable/main_image" />
15
16 <TextView
17 android:id="@+id/textApp"
18 android:layout_width="wrap_content"
19 android:layout_height="wrap_content"
20 android:layout_centerHorizontal="true"
21 android:layout_centerVertical="true"
22 android:text="@string/app_name"
23 android:textSize="40sp"
24 android:typeface="serif" />
25
26 <TextView
27 android:id="@+id/textStatus"
28 android:layout_width="wrap_content"
29 android:layout_height="wrap_content"
30 android:layout_alignParentBottom="true"
31 android:layout_centerHorizontal="true"
32 android:textIsSelectable="false"/>
33
34</RelativeLayout>