]> Pileus Git - ~andy/freeotp/blob - res/layout/about.xml
Add missing license headers
[~andy/freeotp] / res / layout / about.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <!--
3    - FreeOTP
4    -
5    - Authors: Nathaniel McCallum <npmccallum@redhat.com>
6    -
7    - Copyright (C) 2013  Nathaniel McCallum, Red Hat
8    -
9    - Licensed under the Apache License, Version 2.0 (the "License");
10    - you may not use this file except in compliance with the License.
11    - You may obtain a copy of the License at
12    -
13    -     http://www.apache.org/licenses/LICENSE-2.0
14    -
15    - Unless required by applicable law or agreed to in writing, software
16    - distributed under the License is distributed on an "AS IS" BASIS,
17    - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18    - See the License for the specific language governing permissions and
19    - limitations under the License.
20    -->
21 <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
22     android:layout_width="match_parent"
23     android:layout_height="match_parent">
24     <LinearLayout
25         android:layout_width="match_parent"
26         android:layout_height="wrap_content"
27         android:orientation="vertical"
28         android:padding="16dp" >
29         <TextView
30             android:id="@+id/about_version"
31             android:layout_width="match_parent"
32             android:layout_height="wrap_content"
33             android:textSize="18sp"
34             android:textStyle="bold"
35             android:text="@string/about_version" />
36
37         <TextView
38             android:layout_width="match_parent"
39             android:layout_height="wrap_content"
40             android:text="@string/about_copyright"/>
41
42         <TextView
43             android:id="@+id/about_license"
44             android:layout_width="match_parent"
45             android:layout_height="wrap_content"
46             android:layout_marginTop="16dp"
47             android:text="@string/about_license" />
48
49         <TextView
50             android:id="@+id/about_website"
51             android:layout_width="match_parent"
52             android:layout_height="wrap_content"
53             android:layout_marginTop="16dp"
54             android:text="@string/about_website" />
55
56         <TextView
57             android:id="@+id/about_feedback"
58             android:layout_width="match_parent"
59             android:layout_height="wrap_content"
60             android:layout_marginTop="16dp"
61             android:text="@string/about_feedback" />
62     </LinearLayout>
63 </ScrollView>