|
25 | 25 | android:id="@+id/layoutShareEntry"
|
26 | 26 | android:layout_width="match_parent"
|
27 | 27 | android:layout_height="match_parent"
|
28 |
| - android:paddingHorizontal="30dp" |
29 |
| - android:layout_marginTop="?attr/actionBarSize"> |
| 28 | + android:layout_marginTop="?attr/actionBarSize" |
| 29 | + android:paddingHorizontal="30dp"> |
30 | 30 |
|
31 | 31 | <TextView
|
32 | 32 | android:id="@+id/tvDescription"
|
33 | 33 | android:layout_width="wrap_content"
|
34 | 34 | android:layout_height="wrap_content"
|
35 | 35 | android:gravity="center"
|
36 | 36 | android:text="@string/transfer_entry_description"
|
37 |
| - app:layout_constraintTop_toTopOf="parent" |
38 | 37 | app:layout_constraintBottom_toTopOf="@+id/ivQrCode"
|
39 | 38 | app:layout_constraintEnd_toEndOf="parent"
|
40 |
| - app:layout_constraintStart_toStartOf="parent" /> |
| 39 | + app:layout_constraintStart_toStartOf="parent" |
| 40 | + app:layout_constraintTop_toTopOf="parent" /> |
41 | 41 |
|
42 | 42 | <com.google.android.material.imageview.ShapeableImageView
|
43 | 43 | android:id="@+id/ivQrCode"
|
44 | 44 | android:layout_width="0dp"
|
45 | 45 | android:layout_height="0dp"
|
46 |
| - app:shapeAppearanceOverlay="@style/ShapeAppearanceOverlay.Aegis.ImageView.Rounded" |
| 46 | + app:layout_constraintBottom_toBottomOf="parent" |
47 | 47 | app:layout_constraintDimensionRatio="1:1"
|
48 |
| - app:layout_constraintVertical_bias="0.3" |
49 |
| - app:layout_constraintTop_toTopOf="parent" |
50 | 48 | app:layout_constraintEnd_toEndOf="parent"
|
51 | 49 | app:layout_constraintStart_toStartOf="parent"
|
52 |
| - app:layout_constraintBottom_toBottomOf="parent" /> |
| 50 | + app:layout_constraintTop_toTopOf="parent" |
| 51 | + app:layout_constraintVertical_bias="0.3" |
| 52 | + app:shapeAppearanceOverlay="@style/ShapeAppearanceOverlay.Aegis.ImageView.Rounded" /> |
53 | 53 |
|
54 | 54 | <TextView
|
55 | 55 | android:id="@+id/tvIssuer"
|
56 | 56 | android:layout_width="wrap_content"
|
57 | 57 | android:layout_height="wrap_content"
|
58 | 58 | android:layout_marginTop="20dp"
|
59 |
| - tools:text="Issuer" |
60 | 59 | android:textSize="18sp"
|
61 | 60 | android:textStyle="bold"
|
62 | 61 | app:layout_constraintEnd_toEndOf="parent"
|
63 | 62 | app:layout_constraintStart_toStartOf="parent"
|
64 |
| - app:layout_constraintTop_toBottomOf="@+id/ivQrCode" /> |
| 63 | + app:layout_constraintTop_toBottomOf="@+id/ivQrCode" |
| 64 | + tools:text="Issuer" /> |
65 | 65 |
|
66 | 66 | <TextView
|
67 | 67 | android:id="@+id/tvAccountName"
|
68 | 68 | android:layout_width="wrap_content"
|
69 | 69 | android:layout_height="wrap_content"
|
70 | 70 | android:layout_marginTop="4dp"
|
71 |
| - tools:text="Accountname" |
72 | 71 | app:layout_constraintEnd_toEndOf="parent"
|
73 | 72 | app:layout_constraintStart_toStartOf="parent"
|
74 |
| - app:layout_constraintTop_toBottomOf="@+id/tvIssuer" /> |
| 73 | + app:layout_constraintTop_toBottomOf="@+id/tvIssuer" |
| 74 | + tools:text="Accountname" /> |
75 | 75 |
|
76 | 76 | <Button
|
77 | 77 | android:id="@+id/btnCopyClipboard"
|
|
80 | 80 | android:text="@string/copy_uri"
|
81 | 81 | android:textAllCaps="false"
|
82 | 82 | android:visibility="invisible"
|
| 83 | + app:layout_constraintBottom_toTopOf="@id/tvEntriesCount" |
83 | 84 | app:layout_constraintEnd_toEndOf="parent"
|
| 85 | + app:layout_constraintHorizontal_bias="0.497" |
84 | 86 | app:layout_constraintStart_toStartOf="parent"
|
85 | 87 | app:layout_constraintTop_toBottomOf="@id/tvAccountName"
|
86 |
| - app:layout_constraintBottom_toTopOf="@id/tvEntriesCount" /> |
| 88 | + app:layout_constraintVertical_bias="0.134" /> |
87 | 89 |
|
88 | 90 | <Button
|
89 | 91 | android:id="@+id/btnNext"
|
| 92 | + style="@style/Widget.Material3.Button.TextButton" |
90 | 93 | android:layout_width="wrap_content"
|
91 | 94 | android:layout_height="wrap_content"
|
92 | 95 | android:layout_marginBottom="4dp"
|
93 |
| - style="@style/Widget.Material3.Button.TextButton" |
94 | 96 | android:text="@string/next"
|
95 | 97 | android:textAllCaps="false"
|
96 | 98 | app:layout_constraintBottom_toBottomOf="parent"
|
97 | 99 | app:layout_constraintEnd_toEndOf="parent" />
|
98 | 100 |
|
99 | 101 | <Button
|
100 | 102 | android:id="@+id/btnPrevious"
|
| 103 | + style="@style/Widget.Material3.Button.TextButton" |
101 | 104 | android:layout_width="wrap_content"
|
102 | 105 | android:layout_height="wrap_content"
|
103 | 106 | android:layout_marginEnd="4dp"
|
104 | 107 | android:layout_marginBottom="4dp"
|
105 |
| - style="@style/Widget.Material3.Button.TextButton" |
106 | 108 | android:text="@string/previous"
|
107 | 109 | android:textAllCaps="false"
|
108 | 110 | android:visibility="invisible"
|
|
118 | 120 | app:layout_constraintEnd_toEndOf="@+id/btnNext"
|
119 | 121 | app:layout_constraintStart_toStartOf="@+id/btnPrevious" />
|
120 | 122 |
|
| 123 | + <TextView |
| 124 | + android:id="@+id/textView3" |
| 125 | + android:layout_width="wrap_content" |
| 126 | + android:layout_height="wrap_content" |
| 127 | + android:text="@string/transfer_entry_brightness" |
| 128 | + app:layout_constraintBottom_toTopOf="@+id/tvEntriesCount" |
| 129 | + app:layout_constraintEnd_toEndOf="parent" |
| 130 | + app:layout_constraintStart_toStartOf="parent" |
| 131 | + app:layout_constraintTop_toBottomOf="@+id/btnCopyClipboard" /> |
| 132 | + |
121 | 133 | </androidx.constraintlayout.widget.ConstraintLayout>
|
122 | 134 |
|
123 | 135 | </androidx.coordinatorlayout.widget.CoordinatorLayout>
|
0 commit comments