blob: b27300986531d5d975625363ab23df5200f44a49 [file] [log] [blame]
Alexandre Lisionb5823032016-04-25 18:12:14 -04001<?xml version="1.0" encoding="utf-8"?><!-- Copyright (c) 2016 Savoir-faire Linux Inc.
Adrien Béraude36c2dc2016-02-18 11:22:10 -05002
3Author: Adrien Beraud <adrien.beraud@savoirfairelinux.com>
Alexandre Lisionb5823032016-04-25 18:12:14 -04004 Alexandre Lision <alexandre.lision@savoirfairelinux.com>
Adrien Béraude36c2dc2016-02-18 11:22:10 -05005
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-->
Alexandre Lisionb5823032016-04-25 18:12:14 -040019
alision5de91782013-07-10 10:47:30 -040020<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
21 android:layout_width="match_parent"
Adrien Béraud84ad1ea2016-04-06 12:09:55 -040022 android:layout_height="match_parent">
alision5de91782013-07-10 10:47:30 -040023
Alexandre Lisionb5823032016-04-25 18:12:14 -040024 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
alision5de91782013-07-10 10:47:30 -040025 android:layout_width="match_parent"
26 android:layout_height="wrap_content"
Alexandre Lisionb5823032016-04-25 18:12:14 -040027 android:orientation="vertical"
28 android:padding="@dimen/padding_medium">
alision5de91782013-07-10 10:47:30 -040029
Adrien Béraude36c2dc2016-02-18 11:22:10 -050030 <LinearLayout
alision5de91782013-07-10 10:47:30 -040031 android:layout_width="match_parent"
32 android:layout_height="wrap_content"
Alexandre Lisionb5823032016-04-25 18:12:14 -040033 android:layout_margin="5dp"
34 android:gravity="center_vertical"
35 android:orientation="vertical">
alision5de91782013-07-10 10:47:30 -040036
Alexandre Lisionf02190d2013-12-12 17:26:12 -050037 <TextView
Adrien Béraude36c2dc2016-02-18 11:22:10 -050038 android:layout_width="wrap_content"
Alexandre Lisionf02190d2013-12-12 17:26:12 -050039 android:layout_height="wrap_content"
Alexandre Lisionb5823032016-04-25 18:12:14 -040040 android:text="@string/version_section"
41 android:textColor="@color/color_primary_dark"
42 android:textSize="18sp" />
Alexandre Lisionf02190d2013-12-12 17:26:12 -050043
44 <TextView
Adrien Béraudca337972016-03-15 18:25:15 -040045 android:id="@+id/app_release"
46 android:layout_width="wrap_content"
47 android:layout_height="wrap_content"
Adrien Béraudca337972016-03-15 18:25:15 -040048 android:text="@string/app_release"
Alexandre Lisionb5823032016-04-25 18:12:14 -040049 android:textAppearance="?android:attr/textAppearanceSmall" />
50
51 </LinearLayout>
52
53 <View
54 android:layout_width="match_parent"
55 android:layout_height="1dp"
56 android:background="@color/darker_gray" />
57
58 <LinearLayout
59 android:layout_width="match_parent"
60 android:layout_height="wrap_content"
61 android:layout_margin="5dp"
62 android:gravity="center_vertical"
63 android:orientation="vertical">
64
65 <TextView
66 android:layout_width="wrap_content"
67 android:layout_height="wrap_content"
68 android:text="@string/contribute_section"
69 android:textColor="@color/color_primary_dark"
70 android:textSize="18sp" />
Adrien Béraudca337972016-03-15 18:25:15 -040071
72 <TextView
Alexandre Lisionf02190d2013-12-12 17:26:12 -050073 android:id="@+id/web_site"
Adrien Béraude36c2dc2016-02-18 11:22:10 -050074 android:layout_width="wrap_content"
Alexandre Lisionf02190d2013-12-12 17:26:12 -050075 android:layout_height="wrap_content"
Alexandre Lisionb5823032016-04-25 18:12:14 -040076 android:autoLink="web"
77 android:text="@string/app_website_contribute"
78 android:textAppearance="?android:attr/textAppearanceSmall" />
79
80 </LinearLayout>
81
82 <View
83 android:layout_width="match_parent"
84 android:layout_height="1dp"
85 android:background="@color/darker_gray" />
86
87 <LinearLayout
88 android:layout_width="match_parent"
89 android:layout_height="wrap_content"
90 android:layout_margin="5dp"
91 android:gravity="center_vertical"
92 android:orientation="vertical">
93
94 <TextView
95 android:layout_width="wrap_content"
96 android:layout_height="wrap_content"
97 android:text="@string/copyright_section"
98 android:textColor="@color/color_primary_dark"
99 android:textSize="18sp" />
Alexandre Lisionf02190d2013-12-12 17:26:12 -0500100
101 <TextView
Adrien Béraude36c2dc2016-02-18 11:22:10 -0500102 android:id="@+id/copyright"
Alexandre Lisionb5823032016-04-25 18:12:14 -0400103 android:layout_width="wrap_content"
Adrien Béraude36c2dc2016-02-18 11:22:10 -0500104 android:layout_height="wrap_content"
Adrien Béraude36c2dc2016-02-18 11:22:10 -0500105 android:text="@string/copyright"
106 android:textAppearance="?android:attr/textAppearanceSmall" />
107
Alexandre Lisionb5823032016-04-25 18:12:14 -0400108 </LinearLayout>
109
110 <View
111 android:layout_width="match_parent"
112 android:layout_height="1dp"
113 android:background="@color/darker_gray" />
114
115 <LinearLayout
116 android:layout_width="match_parent"
117 android:layout_height="wrap_content"
118 android:layout_margin="5dp"
119 android:gravity="center_vertical"
120 android:orientation="vertical">
121
122 <TextView
123 android:layout_width="wrap_content"
124 android:layout_height="wrap_content"
125 android:text="@string/section_licence"
126 android:textColor="@color/color_primary_dark"
127 android:textSize="18sp" />
128
Adrien Béraude36c2dc2016-02-18 11:22:10 -0500129 <TextView
Alexandre Lisionf02190d2013-12-12 17:26:12 -0500130 android:id="@+id/licence"
131 android:layout_width="match_parent"
132 android:layout_height="wrap_content"
Adrien Béraude36c2dc2016-02-18 11:22:10 -0500133 android:singleLine="false"
Alexandre Lisionb5823032016-04-25 18:12:14 -0400134 android:text="@string/licence" />
135
Adrien Béraude36c2dc2016-02-18 11:22:10 -0500136 </LinearLayout>
Adrien Béraud9754ae62015-06-23 23:40:34 -0400137
Alexandre Lisionb5823032016-04-25 18:12:14 -0400138 <View
139 android:layout_width="match_parent"
140 android:layout_height="1dp"
141 android:background="@color/darker_gray" />
142
143 <LinearLayout
144 android:id="@+id/email_report_container"
145 android:layout_width="match_parent"
146 android:layout_height="wrap_content"
147 android:layout_margin="5dp"
148 android:clickable="true"
149 android:background="?attr/selectableItemBackground"
150 android:gravity="center_vertical"
151 android:orientation="vertical">
152
153 <TextView
154 android:layout_width="wrap_content"
155 android:layout_height="wrap_content"
156 android:clickable="false"
157 android:text="@string/feedback_section"
158 android:textColor="@color/color_primary_dark"
159 android:textSize="18sp" />
160
161 <TextView
162 android:id="@+id/email_report"
163 android:layout_width="wrap_content"
164 android:layout_height="wrap_content"
165 android:clickable="false"
166 android:text="@string/report" />
167
168 </LinearLayout>
169
170 <View
171 android:layout_width="match_parent"
172 android:layout_height="1dp"
173 android:background="@color/darker_gray" />
174
175 <LinearLayout
176 android:layout_width="match_parent"
177 android:layout_height="wrap_content"
178 android:layout_margin="5dp"
179 android:gravity="center_vertical"
180 android:orientation="vertical">
181
182 <TextView
183 android:id="@+id/developped_by"
184 android:layout_width="wrap_content"
185 android:layout_height="wrap_content"
186 android:gravity="center_vertical"
187 android:text="@string/sponsor_section"
188 android:textColor="@color/color_primary_dark"
189 android:textSize="15sp" />
190
191 <ImageView
192 android:id="@+id/logo"
193 android:layout_width="200dp"
194 android:layout_height="50dp"
195 android:layout_gravity="center_horizontal"
196 android:layout_marginTop="5dp"
197 android:contentDescription="@string/app_author"
198 android:maxWidth="250dp"
199 android:scaleType="fitCenter"
200 android:src="@drawable/logo_sfl_coul_rgb" />
201
202 </LinearLayout>
Adrien Béraud9754ae62015-06-23 23:40:34 -0400203
Alexandre Lisionf02190d2013-12-12 17:26:12 -0500204 </LinearLayout>
Alexandre Lisionb5823032016-04-25 18:12:14 -0400205</ScrollView>