blob: 6e03f8e61d7d457ae1cd086ab864d7d818bc839b [file] [log] [blame]
alision5de91782013-07-10 10:47:30 -04001<?xml version="1.0" encoding="utf-8"?>
2<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
3 android:layout_width="match_parent"
4 android:layout_height="match_parent"
5 android:padding="@dimen/padding_medium" >
6
Alexandre Lisionf02190d2013-12-12 17:26:12 -05007 <LinearLayout
alision5de91782013-07-10 10:47:30 -04008 android:layout_width="match_parent"
9 android:layout_height="wrap_content"
10 android:orientation="vertical" >
11
12 <ImageView
13 android:id="@+id/logo"
Alexandre Lisionf02190d2013-12-12 17:26:12 -050014 android:layout_width="match_parent"
alision5de91782013-07-10 10:47:30 -040015 android:layout_height="wrap_content"
alision5de91782013-07-10 10:47:30 -040016 android:src="@drawable/logo_sfl_coul_rgb" />
17
Alexandre Lisionf02190d2013-12-12 17:26:12 -050018 <RelativeLayout
alision5de91782013-07-10 10:47:30 -040019 android:layout_width="match_parent"
20 android:layout_height="wrap_content"
Alexandre Lisionf02190d2013-12-12 17:26:12 -050021 android:background="@drawable/item_generic_selector" >
alision5de91782013-07-10 10:47:30 -040022
Alexandre Lisionf02190d2013-12-12 17:26:12 -050023 <TextView
24 android:id="@+id/app_name"
25 android:layout_width="match_parent"
26 android:layout_height="wrap_content"
27 android:layout_alignParentTop="true"
28 android:gravity="center"
29 android:text="@string/app_name"
30 android:textAppearance="?android:attr/textAppearanceLarge" />
31
32 <TextView
33 android:id="@+id/web_site"
34 android:layout_width="match_parent"
35 android:layout_height="wrap_content"
36 android:layout_below="@+id/app_name"
37 android:gravity="center"
38 android:text="@string/web_site"
39 android:textAppearance="?android:attr/textAppearanceSmall" />
40
41 <TextView
42 android:id="@+id/licence"
43 android:layout_width="match_parent"
44 android:layout_height="wrap_content"
45 android:layout_below="@+id/web_site"
46 android:layout_centerHorizontal="true"
47 android:gravity="center"
48 android:text="@string/copyright"
49 android:textAppearance="?android:attr/textAppearanceSmall" />
50 </RelativeLayout>
51 </LinearLayout>
alision5de91782013-07-10 10:47:30 -040052
53</ScrollView>