|
1 | | -<?xml version="1.0" encoding="utf-8"?> |
2 | | -<!-- |
| 1 | +<?xml version="1.0" encoding="utf-8"?><!-- |
3 | 2 | ~ Copyright (C) 2016-2021 Álinson Santos Xavier <[email protected]> |
4 | 3 | ~ |
5 | 4 | ~ This file is part of Loop Habit Tracker. |
|
19 | 18 | --> |
20 | 19 |
|
21 | 20 | <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" |
22 | | - android:layout_width="fill_parent" |
23 | | - android:layout_height="fill_parent" |
24 | | - xmlns:app="http://schemas.android.com/apk/res-auto" |
25 | | - android:background="?windowBackgroundColor" |
26 | | - android:fillViewport="true"> |
| 21 | + android:layout_width="fill_parent" |
| 22 | + android:layout_height="fill_parent" |
| 23 | + xmlns:app="http://schemas.android.com/apk/res-auto" |
| 24 | + android:background="?windowBackgroundColor" |
| 25 | + android:fillViewport="true"> |
27 | 26 |
|
28 | 27 | <androidx.appcompat.widget.Toolbar |
29 | 28 | android:id="@+id/toolbar" |
30 | 29 | app:popupTheme="?toolbarPopupTheme" |
31 | | - style="@style/Toolbar"/> |
| 30 | + style="@style/Toolbar" /> |
32 | 31 |
|
33 | 32 | <ScrollView |
34 | 33 | android:id="@+id/scrollView" |
|
37 | 36 | android:layout_below="@id/toolbar"> |
38 | 37 |
|
39 | 38 | <LinearLayout |
| 39 | + android:id="@+id/outerLinearLayout" |
40 | 40 | style="@style/CardList"> |
41 | 41 |
|
42 | 42 | <LinearLayout |
|
47 | 47 | android:layout_width="100dp" |
48 | 48 | android:layout_height="100dp" |
49 | 49 | android:layout_margin="6dp" |
50 | | - android:src="@drawable/intro_icon_1"/> |
| 50 | + android:src="@drawable/intro_icon_1" /> |
51 | 51 |
|
52 | 52 | <TextView |
53 | 53 | android:layout_width="wrap_content" |
|
57 | 57 | android:textSize="16sp" |
58 | 58 | android:layout_margin="6dp" |
59 | 59 | android:textColor="?aboutScreenColor" |
60 | | - android:text="@string/app_name"/> |
| 60 | + android:text="@string/app_name" /> |
61 | 61 |
|
62 | 62 | <TextView |
63 | 63 | android:id="@+id/tvVersion" |
64 | 64 | android:layout_width="wrap_content" |
65 | 65 | android:layout_height="wrap_content" |
66 | 66 | android:gravity="center" |
67 | | - android:text=""/> |
| 67 | + android:text="" /> |
68 | 68 |
|
69 | 69 | </LinearLayout> |
70 | 70 |
|
|
75 | 75 | <TextView |
76 | 76 | style="@style/CardHeader" |
77 | 77 | android:text="@string/links" |
78 | | - android:textColor="?aboutScreenColor"/> |
| 78 | + android:textColor="?aboutScreenColor" /> |
79 | 79 |
|
80 | 80 | <TextView |
81 | 81 | android:id="@+id/tvRate" |
82 | 82 | style="@style/About.Item.Clickable" |
83 | | - android:text="@string/pref_rate_this_app"/> |
| 83 | + android:text="@string/pref_rate_this_app" /> |
84 | 84 |
|
85 | 85 | <TextView |
86 | 86 | android:id="@+id/tvFeedback" |
87 | 87 | style="@style/About.Item.Clickable" |
88 | | - android:text="@string/pref_send_feedback"/> |
| 88 | + android:text="@string/pref_send_feedback" /> |
89 | 89 |
|
90 | 90 | <TextView |
91 | 91 | android:id="@+id/tvTranslate" |
92 | 92 | style="@style/About.Item.Clickable" |
93 | | - android:text="@string/help_translate"/> |
| 93 | + android:text="@string/help_translate" /> |
94 | 94 |
|
95 | 95 | <TextView |
96 | 96 | android:id="@+id/tvSource" |
97 | 97 | style="@style/About.Item.Clickable" |
98 | | - android:text="@string/pref_view_source_code"/> |
| 98 | + android:text="@string/pref_view_source_code" /> |
99 | 99 |
|
100 | 100 | <TextView |
101 | | - android:id="@+id/tvPrivacy" |
102 | | - style="@style/About.Item.Clickable" |
103 | | - android:text="@string/pref_view_privacy"/> |
| 101 | + android:id="@+id/tvPrivacy" |
| 102 | + style="@style/About.Item.Clickable" |
| 103 | + android:text="@string/pref_view_privacy" /> |
104 | 104 |
|
105 | 105 | </LinearLayout> |
106 | 106 |
|
|
111 | 111 | <TextView |
112 | 112 | style="@style/CardHeader" |
113 | 113 | android:text="@string/developers" |
114 | | - android:textColor="?aboutScreenColor"/> |
| 114 | + android:textColor="?aboutScreenColor" /> |
115 | 115 |
|
116 | 116 | <!-- |
117 | 117 | This file lists developers who contributed with at least 100 lines |
|
120 | 120 | linked at the bottom of the list. If you qualify, please feel free to |
121 | 121 | submit a pull request adding yourself here. |
122 | 122 | --> |
123 | | - <TextView style="@style/About.Item" android:text="Álinson S. Xavier (@iSoron)"/> |
124 | | - <TextView style="@style/About.Item" android:text="Quentin Hibon (@hiqua)"/> |
125 | | - <TextView style="@style/About.Item" android:text="Oleg Ivashchenko (@olegivo)"/> |
126 | | - <TextView style="@style/About.Item" android:text="Kristian Tashkov (@KristianTashkov)"/> |
127 | | - <TextView style="@style/About.Item" android:text="Jakub Kalinowski (@kalina559)"/> |
128 | | - <TextView style="@style/About.Item" android:text="Rechee Jozil (@recheej)"/> |
129 | | - <TextView style="@style/About.Item" android:text="Sebastian Gallese (@sgallese)"/> |
130 | | - <TextView style="@style/About.Item" android:text="Luboš Luňák (@llunak)"/> |
131 | | - <TextView style="@style/About.Item" android:text="Bindu (@vbh)"/> |
132 | | - <TextView style="@style/About.Item" android:text="Victor Yu (@vyu1)"/> |
133 | | - <TextView style="@style/About.Item" android:text="Christoph Hennemann (@chennemann)"/> |
134 | | - <TextView style="@style/About.Item" android:text="Денис (@sciamano)"/> |
135 | | - <TextView style="@style/About.Item" android:text="Joseph Tran (@JotraN)"/> |
136 | | - <TextView style="@style/About.Item" android:text="Nikhil (@regularcoder)"/> |
137 | | - <TextView style="@style/About.Item" android:text="JanetQC"/> |
138 | | - <TextView |
139 | | - android:id="@+id/tvContributors" |
140 | | - style="@style/About.Item.Clickable" |
141 | | - android:text="@string/view_all_contributors"/> |
| 123 | + <TextView |
| 124 | + style="@style/About.Item" |
| 125 | + android:text="Álinson S. Xavier (@iSoron)" /> |
| 126 | + |
| 127 | + <TextView |
| 128 | + style="@style/About.Item" |
| 129 | + android:text="Quentin Hibon (@hiqua)" /> |
| 130 | + |
| 131 | + <TextView |
| 132 | + style="@style/About.Item" |
| 133 | + android:text="Oleg Ivashchenko (@olegivo)" /> |
| 134 | + |
| 135 | + <TextView |
| 136 | + style="@style/About.Item" |
| 137 | + android:text="Kristian Tashkov (@KristianTashkov)" /> |
| 138 | + |
| 139 | + <TextView |
| 140 | + style="@style/About.Item" |
| 141 | + android:text="Jakub Kalinowski (@kalina559)" /> |
| 142 | + |
| 143 | + <TextView |
| 144 | + style="@style/About.Item" |
| 145 | + android:text="Rechee Jozil (@recheej)" /> |
| 146 | + |
| 147 | + <TextView |
| 148 | + style="@style/About.Item" |
| 149 | + android:text="Sebastian Gallese (@sgallese)" /> |
| 150 | + |
| 151 | + <TextView |
| 152 | + style="@style/About.Item" |
| 153 | + android:text="Luboš Luňák (@llunak)" /> |
| 154 | + |
| 155 | + <TextView |
| 156 | + style="@style/About.Item" |
| 157 | + android:text="Bindu (@vbh)" /> |
| 158 | + |
| 159 | + <TextView |
| 160 | + style="@style/About.Item" |
| 161 | + android:text="Victor Yu (@vyu1)" /> |
| 162 | + |
| 163 | + <TextView |
| 164 | + style="@style/About.Item" |
| 165 | + android:text="Christoph Hennemann (@chennemann)" /> |
| 166 | + |
| 167 | + <TextView |
| 168 | + style="@style/About.Item" |
| 169 | + android:text="Денис (@sciamano)" /> |
| 170 | + |
| 171 | + <TextView |
| 172 | + style="@style/About.Item" |
| 173 | + android:text="Joseph Tran (@JotraN)" /> |
| 174 | + |
| 175 | + <TextView |
| 176 | + style="@style/About.Item" |
| 177 | + android:text="Nikhil (@regularcoder)" /> |
| 178 | + |
| 179 | + <TextView |
| 180 | + style="@style/About.Item" |
| 181 | + android:text="JanetQC" /> |
| 182 | + |
| 183 | + <TextView |
| 184 | + android:id="@+id/tvContributors" |
| 185 | + style="@style/About.Item.Clickable" |
| 186 | + android:text="@string/view_all_contributors" /> |
142 | 187 |
|
143 | 188 | </LinearLayout> |
144 | 189 |
|
145 | | - <include layout="@layout/about_translators"/> |
| 190 | + <include layout="@layout/about_translators" /> |
146 | 191 |
|
147 | | -> |
| 192 | + > |
148 | 193 | </LinearLayout> |
149 | 194 | </ScrollView> |
150 | 195 |
|
|
0 commit comments