Add a comment to clarify what kind of inputs the class handles
[LibreOffice.git] / android / source / res / layout / about.xml
blobf37482b82a0cfa850b715c814d38839ec28095e9
1 <?xml version="1.0" encoding="utf-8"?>
3 <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
4     xmlns:tools="http://schemas.android.com/tools"
5     android:layout_width="match_parent"
6     android:layout_height="match_parent">
7 <LinearLayout
8               android:layout_width="match_parent"
9               android:layout_height="wrap_content"
10               android:orientation="vertical"
11               android:padding="20dip">
13     <TextView
14         android:id="@+id/about_version"
15         android:layout_width="match_parent"
16         android:layout_height="wrap_content"
17         android:textIsSelectable="true"
18         android:textSize="18sp"
19         tools:text="Version: x.x.x.x\nBuild ID: 000000000000" />
21     <TextView
22         android:id="@+id/about_description"
23         android:layout_width="match_parent"
24         android:layout_height="wrap_content"
25         android:text="@string/app_description"
26         android:textSize="18sp"/>
28     <TextView
29         android:id="@+id/about_credits"
30         android:layout_width="match_parent"
31         android:layout_height="wrap_content"
32         android:autoLink="web"
33         android:paddingBottom="20dip"
34         android:paddingTop="20dip"
35         android:text="@string/app_credits"
36         android:textSize="18sp"/>
38     <TextView
39         android:id="@+id/about_vendor"
40         android:layout_width="match_parent"
41         android:layout_height="wrap_content"
42         android:textIsSelectable="true"
43         android:textSize="18sp"
44         tools:text="@string/app_vendor" />
45 </LinearLayout>
46 </ScrollView>