|
1 | 1 | <?xml version="1.0" encoding="utf-8"?> |
2 | | -<RelativeLayout |
3 | | - android:id="@+id/about_holder" |
| 2 | +<ScrollView |
| 3 | + android:id="@+id/about_scrollview" |
4 | 4 | xmlns:android="http://schemas.android.com/apk/res/android" |
5 | 5 | android:layout_width="match_parent" |
6 | 6 | android:layout_height="match_parent" |
7 | | - android:layout_margin="@dimen/activity_margin"> |
| 7 | + android:fillViewport="true"> |
8 | 8 |
|
9 | | - <TextView |
10 | | - android:id="@+id/about_website" |
| 9 | + <RelativeLayout |
| 10 | + android:id="@+id/about_holder" |
11 | 11 | android:layout_width="match_parent" |
12 | 12 | android:layout_height="wrap_content" |
13 | | - android:autoLink="web" |
14 | | - android:text="@string/website"/> |
| 13 | + android:paddingBottom="@dimen/activity_margin" |
| 14 | + android:paddingLeft="@dimen/activity_margin" |
| 15 | + android:paddingTop="@dimen/activity_margin"> |
15 | 16 |
|
16 | | - <TextView |
17 | | - android:id="@+id/about_email_label" |
18 | | - android:layout_width="match_parent" |
19 | | - android:layout_height="wrap_content" |
20 | | - android:layout_below="@+id/about_website" |
21 | | - android:layout_marginTop="@dimen/activity_margin" |
22 | | - android:text="@string/email_label"/> |
| 17 | + <TextView |
| 18 | + android:id="@+id/about_website" |
| 19 | + android:layout_width="match_parent" |
| 20 | + android:layout_height="wrap_content" |
| 21 | + android:autoLink="web" |
| 22 | + android:text="@string/website"/> |
23 | 23 |
|
24 | | - <TextView |
25 | | - android:id="@+id/about_email" |
26 | | - android:layout_width="match_parent" |
27 | | - android:layout_height="wrap_content" |
28 | | - android:layout_below="@+id/about_email_label" |
29 | | - android:text="@string/email"/> |
| 24 | + <TextView |
| 25 | + android:id="@+id/about_email_label" |
| 26 | + android:layout_width="match_parent" |
| 27 | + android:layout_height="wrap_content" |
| 28 | + android:layout_below="@+id/about_website" |
| 29 | + android:layout_marginTop="@dimen/activity_margin" |
| 30 | + android:text="@string/email_label"/> |
30 | 31 |
|
31 | | - <TextView |
32 | | - android:id="@+id/about_rate_us" |
33 | | - android:layout_width="match_parent" |
34 | | - android:layout_height="wrap_content" |
35 | | - android:layout_below="@+id/about_email" |
36 | | - android:layout_marginTop="@dimen/activity_margin" |
37 | | - android:paddingTop="@dimen/activity_margin" |
38 | | - android:text="@string/rate_us_underlined" |
39 | | - android:textColor="@color/colorPrimary"/> |
| 32 | + <TextView |
| 33 | + android:id="@+id/about_email" |
| 34 | + android:layout_width="match_parent" |
| 35 | + android:layout_height="wrap_content" |
| 36 | + android:layout_below="@+id/about_email_label" |
| 37 | + android:text="@string/email"/> |
40 | 38 |
|
41 | | - <TextView |
42 | | - android:id="@+id/about_license" |
43 | | - android:layout_width="match_parent" |
44 | | - android:layout_height="wrap_content" |
45 | | - android:layout_below="@+id/about_rate_us" |
46 | | - android:layout_marginTop="@dimen/activity_margin" |
47 | | - android:paddingBottom="@dimen/activity_margin" |
48 | | - android:paddingTop="@dimen/activity_margin" |
49 | | - android:text="@string/third_party_licences_underlined" |
50 | | - android:textColor="@color/colorPrimary"/> |
51 | | - |
52 | | - <TextView |
53 | | - android:id="@+id/about_follow_us" |
54 | | - android:layout_width="match_parent" |
55 | | - android:layout_height="wrap_content" |
56 | | - android:layout_below="@+id/about_license" |
57 | | - android:paddingBottom="@dimen/social_padding" |
58 | | - android:paddingTop="@dimen/activity_margin" |
59 | | - android:text="@string/follow_us"/> |
| 39 | + <TextView |
| 40 | + android:id="@+id/about_rate_us" |
| 41 | + android:layout_width="match_parent" |
| 42 | + android:layout_height="wrap_content" |
| 43 | + android:layout_below="@+id/about_email" |
| 44 | + android:layout_marginTop="@dimen/activity_margin" |
| 45 | + android:paddingTop="@dimen/activity_margin" |
| 46 | + android:text="@string/rate_us_underlined" |
| 47 | + android:textColor="@color/colorPrimary"/> |
60 | 48 |
|
61 | | - <ImageView |
62 | | - android:id="@+id/about_facebook" |
63 | | - android:layout_width="@dimen/social_logo" |
64 | | - android:layout_height="@dimen/social_logo" |
65 | | - android:layout_below="@+id/about_follow_us" |
66 | | - android:src="@mipmap/facebook"/> |
| 49 | + <TextView |
| 50 | + android:id="@+id/about_license" |
| 51 | + android:layout_width="match_parent" |
| 52 | + android:layout_height="wrap_content" |
| 53 | + android:layout_below="@+id/about_rate_us" |
| 54 | + android:layout_marginTop="@dimen/activity_margin" |
| 55 | + android:paddingBottom="@dimen/activity_margin" |
| 56 | + android:paddingTop="@dimen/activity_margin" |
| 57 | + android:text="@string/third_party_licences_underlined" |
| 58 | + android:textColor="@color/colorPrimary"/> |
67 | 59 |
|
68 | | - <ImageView |
69 | | - android:id="@+id/about_gplus" |
70 | | - android:layout_width="@dimen/social_logo" |
71 | | - android:layout_height="@dimen/social_logo" |
72 | | - android:layout_below="@+id/about_follow_us" |
73 | | - android:layout_marginLeft="@dimen/social_padding" |
74 | | - android:layout_toRightOf="@+id/about_facebook" |
75 | | - android:src="@mipmap/gplus"/> |
| 60 | + <TextView |
| 61 | + android:id="@+id/about_follow_us" |
| 62 | + android:layout_width="match_parent" |
| 63 | + android:layout_height="wrap_content" |
| 64 | + android:layout_below="@+id/about_license" |
| 65 | + android:paddingBottom="@dimen/social_padding" |
| 66 | + android:paddingTop="@dimen/activity_margin" |
| 67 | + android:text="@string/follow_us"/> |
76 | 68 |
|
77 | | - <TextView |
78 | | - android:id="@+id/about_version" |
79 | | - android:layout_width="match_parent" |
80 | | - android:layout_height="wrap_content" |
81 | | - android:layout_above="@+id/about_copyright" |
82 | | - android:gravity="center_horizontal" |
83 | | - android:text="v 1.0"/> |
| 69 | + <ImageView |
| 70 | + android:id="@+id/about_facebook" |
| 71 | + android:layout_width="@dimen/social_logo" |
| 72 | + android:layout_height="@dimen/social_logo" |
| 73 | + android:layout_below="@+id/about_follow_us" |
| 74 | + android:src="@mipmap/facebook"/> |
84 | 75 |
|
85 | | - <TextView |
86 | | - android:id="@+id/about_copyright" |
87 | | - android:layout_width="match_parent" |
88 | | - android:layout_height="wrap_content" |
89 | | - android:layout_alignParentBottom="true" |
90 | | - android:gravity="center_horizontal" |
91 | | - android:text="Copyright © Simple Mobile Tools 2016"/> |
| 76 | + <ImageView |
| 77 | + android:id="@+id/about_gplus" |
| 78 | + android:layout_width="@dimen/social_logo" |
| 79 | + android:layout_height="@dimen/social_logo" |
| 80 | + android:layout_below="@+id/about_follow_us" |
| 81 | + android:layout_marginLeft="@dimen/social_padding" |
| 82 | + android:layout_toRightOf="@+id/about_facebook" |
| 83 | + android:src="@mipmap/gplus"/> |
92 | 84 |
|
93 | | -</RelativeLayout> |
| 85 | + <TextView |
| 86 | + android:id="@+id/about_copyright" |
| 87 | + android:layout_width="match_parent" |
| 88 | + android:layout_height="match_parent" |
| 89 | + android:layout_alignParentBottom="true" |
| 90 | + android:layout_below="@+id/about_gplus" |
| 91 | + android:gravity="center_horizontal|bottom" |
| 92 | + android:paddingTop="@dimen/activity_margin" |
| 93 | + android:text="v1.0\nCopyright © Simple Mobile Tools 2016"/> |
| 94 | + </RelativeLayout> |
| 95 | +</ScrollView> |
0 commit comments