blob: c5d8c1d894cb167828389601088ee58533c62356 [file] [log] [blame]
Adrien Béraude36c2dc2016-02-18 11:22:10 -05001<?xml version="1.0" encoding="utf-8"?><!--
2Copyright (c) 2016 Savoir-faire Linux Inc.
3
4Author: Adrien Beraud <adrien.beraud@savoirfairelinux.com>
5
6This program is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 3 of the License, or
9(at your option) any later version.
10
11This program is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with this program. If not, see <http://www.gnu.org/licenses/>.
18-->
alision5de91782013-07-10 10:47:30 -040019<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
20 android:layout_width="match_parent"
21 android:layout_height="match_parent"
Adrien Béraud9754ae62015-06-23 23:40:34 -040022 android:padding="@dimen/padding_medium">
alision5de91782013-07-10 10:47:30 -040023
Alexandre Lisionf02190d2013-12-12 17:26:12 -050024 <LinearLayout
alision5de91782013-07-10 10:47:30 -040025 android:layout_width="match_parent"
26 android:layout_height="wrap_content"
Adrien Béraud9754ae62015-06-23 23:40:34 -040027 android:orientation="vertical">
alision5de91782013-07-10 10:47:30 -040028
29 <ImageView
Adrien Béraud9754ae62015-06-23 23:40:34 -040030 android:id="@+id/imageView"
31 android:layout_width="wrap_content"
alision5de91782013-07-10 10:47:30 -040032 android:layout_height="wrap_content"
Adrien Béraud9754ae62015-06-23 23:40:34 -040033 android:layout_gravity="center_horizontal"
34 android:contentDescription="@string/app_name"
35 android:src="@drawable/ring_logo" />
alision5de91782013-07-10 10:47:30 -040036
Adrien Béraude36c2dc2016-02-18 11:22:10 -050037 <LinearLayout
alision5de91782013-07-10 10:47:30 -040038 android:layout_width="match_parent"
39 android:layout_height="wrap_content"
Adrien Béraude36c2dc2016-02-18 11:22:10 -050040 android:background="@drawable/item_generic_selector"
41 android:orientation="vertical"
42 android:padding="4dp">
alision5de91782013-07-10 10:47:30 -040043
Alexandre Lisionf02190d2013-12-12 17:26:12 -050044 <TextView
45 android:id="@+id/app_name"
Adrien Béraude36c2dc2016-02-18 11:22:10 -050046 android:layout_width="wrap_content"
Alexandre Lisionf02190d2013-12-12 17:26:12 -050047 android:layout_height="wrap_content"
Adrien Béraude36c2dc2016-02-18 11:22:10 -050048 android:layout_gravity="center_horizontal"
Alexandre Lisionf02190d2013-12-12 17:26:12 -050049 android:text="@string/app_name"
50 android:textAppearance="?android:attr/textAppearanceLarge" />
51
52 <TextView
Adrien Béraudca337972016-03-15 18:25:15 -040053 android:id="@+id/app_release"
54 android:layout_width="wrap_content"
55 android:layout_height="wrap_content"
56 android:layout_gravity="center_horizontal"
57 android:text="@string/app_release"
58 android:textAppearance="?android:attr/textAppearanceLarge"
59 android:textSize="16sp" />
60
61 <TextView
Alexandre Lisionf02190d2013-12-12 17:26:12 -050062 android:id="@+id/web_site"
Adrien Béraude36c2dc2016-02-18 11:22:10 -050063 android:layout_width="wrap_content"
Alexandre Lisionf02190d2013-12-12 17:26:12 -050064 android:layout_height="wrap_content"
Adrien Béraude36c2dc2016-02-18 11:22:10 -050065 android:layout_gravity="center_horizontal"
66 android:layout_marginTop="4dp"
Alexandre Lisionf02190d2013-12-12 17:26:12 -050067 android:gravity="center"
Adrien Béraudca337972016-03-15 18:25:15 -040068 android:text="@string/app_website"
69 android:textAppearance="?android:attr/textAppearanceSmall"
70 android:autoLink="web" />
Alexandre Lisionf02190d2013-12-12 17:26:12 -050071
72 <TextView
Adrien Béraude36c2dc2016-02-18 11:22:10 -050073 android:id="@+id/copyright"
74 android:layout_width="match_parent"
75 android:layout_height="wrap_content"
76 android:layout_marginTop="8dp"
77 android:gravity="center"
78 android:text="@string/copyright"
79 android:textAppearance="?android:attr/textAppearanceSmall" />
80
81 <TextView
Alexandre Lisionf02190d2013-12-12 17:26:12 -050082 android:id="@+id/licence"
83 android:layout_width="match_parent"
84 android:layout_height="wrap_content"
Adrien Béraude36c2dc2016-02-18 11:22:10 -050085 android:layout_marginTop="8dp"
86 android:gravity="center_horizontal"
87 android:singleLine="false"
88 android:text="@string/licence"
89 android:textAppearance="?android:attr/textAppearanceSmall"
90 android:textSize="12sp" />
91 </LinearLayout>
Adrien Béraud9754ae62015-06-23 23:40:34 -040092
93 <ImageView
94 android:id="@+id/logo"
95 android:layout_width="260dp"
96 android:layout_height="134dp"
97 android:layout_gravity="center_horizontal"
98 android:contentDescription="@string/app_author"
99 android:maxWidth="250dp"
100 android:src="@drawable/logo_sfl_coul_rgb" />
101
Alexandre Lisionf02190d2013-12-12 17:26:12 -0500102 </LinearLayout>
alision5de91782013-07-10 10:47:30 -0400103
104</ScrollView>