blob: 23013ab81437ab08fe0cf26380bd5b5744b29b7a [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
53 android:id="@+id/web_site"
Adrien Béraude36c2dc2016-02-18 11:22:10 -050054 android:layout_width="wrap_content"
Alexandre Lisionf02190d2013-12-12 17:26:12 -050055 android:layout_height="wrap_content"
Adrien Béraude36c2dc2016-02-18 11:22:10 -050056 android:layout_gravity="center_horizontal"
57 android:layout_marginTop="4dp"
Alexandre Lisionf02190d2013-12-12 17:26:12 -050058 android:gravity="center"
59 android:text="@string/web_site"
60 android:textAppearance="?android:attr/textAppearanceSmall" />
61
62 <TextView
Adrien Béraude36c2dc2016-02-18 11:22:10 -050063 android:id="@+id/copyright"
64 android:layout_width="match_parent"
65 android:layout_height="wrap_content"
66 android:layout_marginTop="8dp"
67 android:gravity="center"
68 android:text="@string/copyright"
69 android:textAppearance="?android:attr/textAppearanceSmall" />
70
71 <TextView
Alexandre Lisionf02190d2013-12-12 17:26:12 -050072 android:id="@+id/licence"
73 android:layout_width="match_parent"
74 android:layout_height="wrap_content"
Adrien Béraude36c2dc2016-02-18 11:22:10 -050075 android:layout_marginTop="8dp"
76 android:gravity="center_horizontal"
77 android:singleLine="false"
78 android:text="@string/licence"
79 android:textAppearance="?android:attr/textAppearanceSmall"
80 android:textSize="12sp" />
81 </LinearLayout>
Adrien Béraud9754ae62015-06-23 23:40:34 -040082
83 <ImageView
84 android:id="@+id/logo"
85 android:layout_width="260dp"
86 android:layout_height="134dp"
87 android:layout_gravity="center_horizontal"
88 android:contentDescription="@string/app_author"
89 android:maxWidth="250dp"
90 android:src="@drawable/logo_sfl_coul_rgb" />
91
Alexandre Lisionf02190d2013-12-12 17:26:12 -050092 </LinearLayout>
alision5de91782013-07-10 10:47:30 -040093
94</ScrollView>