commit | author | age
|
0d7d16
|
1 |
<?xml version="1.0" encoding="utf-8"?> |
JK |
2 |
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" |
|
3 |
android:layout_width="match_parent" |
|
4 |
android:layout_height="wrap_content" |
|
5 |
android:paddingBottom="@dimen/activity_vertical_margin" |
|
6 |
android:paddingLeft="@dimen/activity_horizontal_margin" |
|
7 |
android:paddingRight="@dimen/activity_horizontal_margin" |
|
8 |
android:paddingTop="@dimen/activity_vertical_margin"> |
|
9 |
|
|
10 |
<LinearLayout |
|
11 |
android:layout_width="match_parent" |
|
12 |
android:layout_height="wrap_content" |
|
13 |
android:orientation="vertical"> |
|
14 |
|
|
15 |
<TextView |
|
16 |
android:id="@+id/about_version_label" |
|
17 |
android:layout_width="match_parent" |
|
18 |
android:layout_height="wrap_content" |
|
19 |
android:text="@string/about_version" |
|
20 |
android:textSize="16sp" |
|
21 |
android:textStyle="bold" /> |
|
22 |
|
|
23 |
<TextView |
|
24 |
android:id="@+id/about_version" |
|
25 |
android:layout_width="match_parent" |
|
26 |
android:layout_height="wrap_content" /> |
|
27 |
|
|
28 |
<TextView |
|
29 |
android:id="@+id/about_author_label" |
|
30 |
android:layout_width="match_parent" |
|
31 |
android:layout_height="wrap_content" |
|
32 |
android:layout_marginTop="10sp" |
|
33 |
android:text="@string/about_author" |
|
34 |
android:textSize="16sp" |
|
35 |
android:textStyle="bold" /> |
|
36 |
|
|
37 |
<TextView |
|
38 |
android:id="@+id/about_author" |
|
39 |
android:layout_width="match_parent" |
|
40 |
android:layout_height="wrap_content" |
|
41 |
android:text="@string/about_author_contents" /> |
|
42 |
|
|
43 |
<TextView |
|
44 |
android:id="@+id/about_url_label" |
|
45 |
android:layout_width="match_parent" |
|
46 |
android:layout_height="wrap_content" |
|
47 |
android:layout_marginTop="10sp" |
|
48 |
android:text="@string/about_url" |
|
49 |
android:textSize="16sp" |
|
50 |
android:textStyle="bold" /> |
|
51 |
|
|
52 |
<TextView |
|
53 |
android:id="@+id/about_url" |
|
54 |
android:layout_width="match_parent" |
|
55 |
android:layout_height="wrap_content" |
|
56 |
android:text="@string/about_url_contents" |
|
57 |
android:autoLink="web" /> |
|
58 |
|
|
59 |
<TextView |
|
60 |
android:id="@+id/about_license_label" |
|
61 |
android:layout_width="match_parent" |
|
62 |
android:layout_height="wrap_content" |
|
63 |
android:layout_marginTop="10sp" |
|
64 |
android:text="@string/about_license" |
|
65 |
android:textSize="16sp" |
|
66 |
android:textStyle="bold" /> |
|
67 |
|
|
68 |
<TextView |
|
69 |
android:id="@+id/about_license" |
|
70 |
android:layout_width="match_parent" |
|
71 |
android:layout_height="wrap_content" |
|
72 |
android:text="@string/about_license_contents" |
|
73 |
android:textSize="16sp" /> |
|
74 |
|
|
75 |
<TextView |
|
76 |
android:id="@+id/about_license_full" |
|
77 |
android:layout_width="match_parent" |
|
78 |
android:layout_height="wrap_content" |
|
79 |
android:text="@string/about_license_full" |
|
80 |
android:textSize="16sp" /> |
|
81 |
</LinearLayout> |
|
82 |
</ScrollView> |