Initial import
[SaveMySugar/android-savemysugar.git] / src / main / res / layout / about.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3     android:layout_width="fill_parent"
4     android:layout_height="fill_parent"
5     android:paddingLeft="24dp"
6     android:paddingRight="24dp"
7     android:paddingEnd="24dp"
8     android:paddingTop="20dp"
9     android:baselineAligned="false"
10     android:orientation="vertical">
11
12     <LinearLayout
13         android:layout_width="fill_parent"
14         android:layout_height="fill_parent"
15         android:orientation="horizontal">
16
17         <TextView
18             android:text="@string/about_version"
19             android:textStyle="bold"
20             android:layout_width="wrap_content"
21             android:layout_height="wrap_content" />
22
23         <TextView android:id="@+id/version"
24             android:paddingLeft="8sp"
25             android:paddingRight="8sp"
26             android:layout_width="wrap_content"
27             android:layout_height="wrap_content" />
28
29     </LinearLayout>
30
31     <LinearLayout
32         android:layout_width="fill_parent"
33         android:layout_height="fill_parent"
34         android:orientation="horizontal">
35
36         <TextView
37             android:text="@string/about_source"
38             android:textStyle="bold"
39             android:layout_width="wrap_content"
40             android:layout_height="wrap_content" />
41
42         <TextView
43             android:text="@string/source_link"
44             android:paddingLeft="8sp"
45             android:paddingRight="8sp"
46             android:autoLink="web"
47             android:layout_width="wrap_content"
48             android:layout_height="wrap_content" />
49
50     </LinearLayout>
51
52     <LinearLayout
53         android:layout_width="fill_parent"
54         android:layout_height="fill_parent"
55         android:orientation="horizontal">
56
57         <TextView
58             android:text="@string/about_author_name"
59             android:textStyle="bold"
60             android:layout_width="wrap_content"
61             android:layout_height="wrap_content" />
62
63         <TextView
64             android:text="@string/author_name"
65             android:paddingLeft="8sp"
66             android:paddingRight="8sp"
67             android:autoLink="web"
68             android:layout_width="wrap_content"
69             android:layout_height="wrap_content" />
70
71     </LinearLayout>
72
73     <LinearLayout
74         android:layout_width="fill_parent"
75         android:layout_height="fill_parent"
76         android:orientation="horizontal">
77
78         <TextView
79             android:text="@string/about_author_website"
80             android:textStyle="bold"
81             android:layout_width="wrap_content"
82             android:layout_height="wrap_content" />
83
84         <TextView
85             android:text="@string/author_website"
86             android:paddingLeft="8sp"
87             android:paddingRight="8sp"
88             android:autoLink="web"
89             android:layout_width="wrap_content"
90             android:layout_height="wrap_content" />
91
92     </LinearLayout>
93
94     <LinearLayout
95         android:layout_width="fill_parent"
96         android:layout_height="fill_parent"
97         android:orientation="horizontal">
98
99         <TextView
100             android:text="@string/about_author_email"
101             android:textStyle="bold"
102             android:layout_width="wrap_content"
103             android:layout_height="wrap_content" />
104
105         <TextView
106             android:text="@string/author_email"
107             android:paddingLeft="8sp"
108             android:paddingRight="8sp"
109             android:autoLink="email"
110             android:layout_width="wrap_content"
111             android:layout_height="wrap_content" />
112
113     </LinearLayout>
114
115     <TextView
116         android:text="@string/about_desc"
117         android:paddingTop="12dp"
118         android:layout_width="fill_parent"
119         android:layout_height="fill_parent" />
120
121 </LinearLayout>