|
2 | 2 | <!-- |
3 | 3 | ~ Nextcloud Notes - Android Client |
4 | 4 | ~ |
5 | | - ~ SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors |
| 5 | + ~ SPDX-FileCopyrightText: 2016-2025 Nextcloud GmbH and Nextcloud contributors |
6 | 6 | ~ SPDX-License-Identifier: GPL-3.0-or-later |
7 | 7 | --> |
8 | 8 | <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" |
|
17 | 17 | android:padding="@dimen/spacer_2x"> |
18 | 18 |
|
19 | 19 | <TextView |
| 20 | + android:id="@+id/about_notes_headline" |
20 | 21 | android:layout_width="wrap_content" |
21 | 22 | android:layout_height="wrap_content" |
22 | 23 | android:layout_gravity="center" |
23 | | - android:layout_marginVertical="30dp" |
| 24 | + android:layout_marginVertical="@dimen/spacer_3x" |
24 | 25 | android:text="@string/app_name" |
25 | | - android:textAppearance="?android:attr/textAppearanceMedium" |
26 | | - android:textColor="@color/fg_default_low" |
27 | 26 | android:textSize="26sp" |
28 | 27 | app:drawableTopCompat="@mipmap/ic_launcher" /> |
29 | 28 |
|
30 | 29 | <TextView |
31 | | - style="?android:attr/listSeparatorTextViewStyle" |
| 30 | + android:id="@+id/about_version_headline" |
32 | 31 | android:layout_width="match_parent" |
33 | 32 | android:layout_height="wrap_content" |
34 | | - android:text="@string/about_version_title" /> |
| 33 | + android:text="@string/about_version_title" |
| 34 | + android:textStyle="bold" /> |
35 | 35 |
|
36 | 36 | <TextView |
37 | 37 | android:id="@+id/about_version" |
38 | | - style="?android:attr/editTextPreferenceStyle" |
39 | | - android:layout_width="wrap_content" |
| 38 | + android:layout_width="match_parent" |
40 | 39 | android:layout_height="wrap_content" |
41 | | - android:padding="10dp" |
| 40 | + android:paddingTop="@dimen/spacer_1x" |
42 | 41 | android:text="@string/about_version" /> |
43 | 42 |
|
44 | 43 | <TextView |
45 | | - style="?android:attr/listSeparatorTextViewStyle" |
| 44 | + android:id="@+id/about_maintainer_headline" |
46 | 45 | android:layout_width="match_parent" |
47 | 46 | android:layout_height="wrap_content" |
48 | | - android:text="@string/about_maintainer_title" /> |
| 47 | + android:layout_marginTop="@dimen/spacer_2x" |
| 48 | + android:text="@string/about_maintainer_title" |
| 49 | + android:textStyle="bold" /> |
49 | 50 |
|
50 | 51 | <TextView |
51 | 52 | android:id="@+id/about_maintainer" |
52 | | - style="?android:attr/editTextPreferenceStyle" |
53 | 53 | android:layout_width="match_parent" |
54 | 54 | android:layout_height="wrap_content" |
55 | | - android:padding="10dp" |
| 55 | + android:paddingTop="@dimen/spacer_1x" |
56 | 56 | android:text="@string/about_maintainer" /> |
57 | 57 |
|
58 | 58 | <TextView |
59 | | - style="?android:attr/listSeparatorTextViewStyle" |
| 59 | + android:id="@+id/about_developers_headline" |
60 | 60 | android:layout_width="match_parent" |
61 | 61 | android:layout_height="wrap_content" |
62 | | - android:text="@string/about_developers_title" /> |
| 62 | + android:layout_marginTop="@dimen/spacer_2x" |
| 63 | + android:text="@string/about_developers_title" |
| 64 | + android:textStyle="bold" /> |
63 | 65 |
|
64 | 66 | <TextView |
65 | 67 | android:id="@+id/about_developers" |
66 | | - style="?android:attr/editTextPreferenceStyle" |
67 | 68 | android:layout_width="match_parent" |
68 | 69 | android:layout_height="wrap_content" |
69 | | - android:padding="10dp" |
| 70 | + android:paddingTop="@dimen/spacer_1x" |
70 | 71 | android:text="@string/about_developers" /> |
71 | 72 |
|
72 | 73 | <TextView |
73 | | - style="?android:attr/listSeparatorTextViewStyle" |
| 74 | + android:id="@+id/about_translators_headline" |
74 | 75 | android:layout_width="match_parent" |
75 | 76 | android:layout_height="wrap_content" |
76 | | - android:text="@string/about_translators_title" /> |
| 77 | + android:layout_marginTop="@dimen/spacer_2x" |
| 78 | + android:text="@string/about_translators_title" |
| 79 | + android:textStyle="bold" /> |
77 | 80 |
|
78 | 81 | <TextView |
79 | 82 | android:id="@+id/about_translators" |
80 | | - style="?android:attr/editTextPreferenceStyle" |
81 | 83 | android:layout_width="match_parent" |
82 | 84 | android:layout_height="wrap_content" |
83 | | - android:padding="10dp" |
| 85 | + android:paddingTop="@dimen/spacer_1x" |
84 | 86 | android:text="@string/about_translators_transifex" /> |
85 | 87 |
|
86 | 88 | <TextView |
87 | | - style="?android:attr/listSeparatorTextViewStyle" |
| 89 | + android:id="@+id/about_testers_headline" |
88 | 90 | android:layout_width="match_parent" |
89 | 91 | android:layout_height="wrap_content" |
90 | | - android:text="@string/about_testers_title" /> |
| 92 | + android:layout_marginTop="@dimen/spacer_2x" |
| 93 | + android:text="@string/about_testers_title" |
| 94 | + android:textStyle="bold" /> |
91 | 95 |
|
92 | 96 | <TextView |
93 | | - style="?android:attr/editTextPreferenceStyle" |
| 97 | + android:id="@+id/about_testers" |
94 | 98 | android:layout_width="match_parent" |
95 | 99 | android:layout_height="wrap_content" |
96 | | - android:padding="10dp" |
| 100 | + android:paddingTop="@dimen/spacer_1x" |
97 | 101 | android:text="@string/about_testers" /> |
98 | 102 | </LinearLayout> |
99 | 103 | </ScrollView> |
0 commit comments