Skip to content

Commit 1050a34

Browse files
committed
Minor fix match_layout.xml
1 parent 8fd0faa commit 1050a34

File tree

2 files changed

+9
-10
lines changed

2 files changed

+9
-10
lines changed

‎app/src/main/res/layout/match_layout.xml‎

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
<androidx.cardview.widget.CardView
33
xmlns:android="http://schemas.android.com/apk/res/android"
44
xmlns:app="http://schemas.android.com/apk/res-auto"
5-
xmlns:tools="http://schemas.android.com/tools"
65
android:layout_width="match_parent"
76
android:layout_height="wrap_content"
87
android:layout_marginHorizontal="10dp"
@@ -21,7 +20,7 @@
2120
android:layout_width="0dp"
2221
android:layout_height="wrap_content"
2322
android:layout_marginTop="16dp"
24-
android:text="TextView"
23+
android:text="@string/hello_blank_fragment"
2524
android:textAlignment="center"
2625
android:textColor="@color/white"
2726
android:textSize="18sp"
@@ -38,7 +37,8 @@
3837
android:layout_marginTop="16dp"
3938
app:layout_constraintStart_toStartOf="parent"
4039
app:layout_constraintTop_toBottomOf="@+id/titolo"
41-
app:srcCompat="@drawable/ic_outline_location_on_24" />
40+
app:srcCompat="@drawable/ic_outline_location_on_24"
41+
android:contentDescription="@string/Logo" />
4242

4343
<TextView
4444
android:id="@+id/luogo"
@@ -47,7 +47,7 @@
4747
android:layout_marginStart="16dp"
4848
android:layout_marginTop="16dp"
4949
android:layout_marginEnd="16dp"
50-
android:text="TextView"
50+
android:text="@string/hello_blank_fragment"
5151
android:textColor="@color/white"
5252
app:layout_constraintEnd_toEndOf="parent"
5353
app:layout_constraintStart_toEndOf="@+id/imageView"
@@ -60,8 +60,8 @@
6060
android:layout_marginStart="16dp"
6161
android:layout_marginTop="8dp"
6262
android:layout_marginBottom="16dp"
63-
android:text="TextView"
64-
android:textColor="#EAE8E8"
63+
android:text="@string/hello_blank_fragment"
64+
android:textColor="@color/lightGray"
6565
app:layout_constraintBottom_toBottomOf="parent"
6666
app:layout_constraintStart_toEndOf="@+id/imageView"
6767
app:layout_constraintTop_toBottomOf="@+id/luogo" />
@@ -73,15 +73,13 @@
7373
android:layout_marginStart="16dp"
7474
android:layout_marginTop="6dp"
7575
android:layout_marginEnd="16dp"
76-
android:text="TextView"
76+
android:text="@string/hello_blank_fragment"
7777
android:textAlignment="textEnd"
78-
android:textColor="#E3E1E1"
78+
android:textColor="@color/lightGray"
7979
android:textSize="16sp"
8080
app:layout_constraintEnd_toEndOf="parent"
8181
app:layout_constraintHorizontal_bias="0.0"
8282
app:layout_constraintStart_toEndOf="@+id/data"
8383
app:layout_constraintTop_toBottomOf="@+id/luogo" />
84-
85-
8684
</androidx.constraintlayout.widget.ConstraintLayout>
8785
</androidx.cardview.widget.CardView>

‎app/src/main/res/values/colors.xml‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
<color name="black_overlay">#66000000</color>
2626
<color name="colorRecoverPassword">#0D7700</color>
2727
<color name="gray">#A9A9A9</color>
28+
<color name="lightGray">#EAE8E8</color>
2829
<color name="semiBlack">#323232</color>
2930

3031

0 commit comments

Comments
 (0)