|
3 | 3 | xmlns:app="http://schemas.android.com/apk/res-auto" |
4 | 4 | android:layout_width="match_parent" |
5 | 5 | android:layout_height="match_parent" |
6 | | - android:paddingStart="10dp" |
7 | | - android:paddingEnd="10dp" |
8 | 6 | android:orientation="vertical"> |
9 | 7 |
|
10 | 8 | <include layout="@layout/hex_toolbar" /> |
|
16 | 14 |
|
17 | 15 | <androidx.appcompat.widget.AppCompatTextView |
18 | 16 | android:id="@+id/tvLabelSource" |
19 | | - android:layout_width="wrap_content" |
| 17 | + android:layout_width="match_parent" |
20 | 18 | android:layout_height="wrap_content" |
21 | 19 | android:paddingTop="10dp" |
22 | | - android:text="@string/source" /> |
| 20 | + android:text="@string/source" |
| 21 | + android:layout_marginEnd="10dp" |
| 22 | + android:layout_marginStart="10dp"/> |
23 | 23 |
|
24 | 24 | <androidx.appcompat.widget.AppCompatTextView |
25 | 25 | android:id="@+id/tvSource" |
|
28 | 28 | android:paddingBottom="5dp" |
29 | 29 | android:text="@null" |
30 | 30 | android:textSize="16sp" |
31 | | - android:typeface="monospace" /> |
| 31 | + android:typeface="monospace" |
| 32 | + android:layout_marginEnd="10dp" |
| 33 | + android:layout_marginStart="10dp"/> |
32 | 34 |
|
33 | 35 | <androidx.appcompat.widget.AppCompatCheckBox |
34 | 36 | android:id="@+id/chkSmartInput" |
35 | | - android:layout_width="wrap_content" |
| 37 | + android:layout_width="match_parent" |
36 | 38 | android:layout_height="wrap_content" |
37 | 39 | android:paddingTop="5dp" |
38 | 40 | android:paddingBottom="10dp" |
39 | | - android:text="@string/smart_input" /> |
| 41 | + android:text="@string/smart_input" |
| 42 | + android:layout_marginEnd="10dp" |
| 43 | + android:layout_marginStart="10dp"/> |
40 | 44 |
|
41 | 45 | <androidx.appcompat.widget.AppCompatTextView |
42 | 46 | android:id="@+id/tvLabelResult" |
43 | | - android:layout_width="wrap_content" |
| 47 | + android:layout_width="match_parent" |
44 | 48 | android:layout_height="wrap_content" |
45 | 49 | android:paddingTop="5dp" |
46 | 50 | android:paddingBottom="5dp" |
47 | | - android:text="@string/result" /> |
| 51 | + android:text="@string/result" |
| 52 | + android:layout_marginEnd="10dp" |
| 53 | + android:layout_marginStart="10dp"/> |
48 | 54 |
|
49 | 55 | <LinearLayout |
50 | 56 | android:layout_width="match_parent" |
51 | 57 | android:layout_height="match_parent" |
52 | | - android:orientation="vertical"> |
| 58 | + android:orientation="vertical" |
| 59 | + android:layout_margin="10dp"> |
53 | 60 |
|
54 | 61 | <androidx.core.widget.NestedScrollView |
55 | 62 | android:id="@+id/nestedScrollView" |
56 | 63 | android:layout_width="match_parent" |
57 | 64 | android:layout_height="0dp" |
58 | 65 | android:layout_weight="0.3" |
59 | | - android:background="@drawable/border"> |
| 66 | + android:background="@drawable/hex_background"> |
60 | 67 |
|
61 | 68 | <androidx.appcompat.widget.AppCompatTextView |
62 | 69 | android:id="@+id/tvResult" |
|
0 commit comments