Fix pin position in static map

This commit is contained in:
Maxime NATUREL 2022-05-03 11:46:51 +02:00
parent 889e09a891
commit f2b66c5fb5

View File

@ -21,13 +21,13 @@
android:layout_width="51dp"
android:layout_height="55dp"
android:layout_gravity="center"
android:layout_marginBottom="28dp"
android:importantForAccessibility="no"
android:src="@drawable/bg_map_user_pin"
app:layout_constraintBottom_toBottomOf="@id/staticMapImageView"
app:layout_constraintBottom_toTopOf="@id/staticMapVerticalCenter"
app:layout_constraintEnd_toEndOf="@id/staticMapImageView"
app:layout_constraintStart_toStartOf="@id/staticMapImageView"
app:layout_constraintTop_toTopOf="@id/staticMapImageView" />
app:layout_constraintTop_toTopOf="@id/staticMapImageView"
app:layout_constraintVertical_bias="1.0" />
<TextView
android:id="@+id/staticMapErrorTextView"
@ -55,4 +55,11 @@
app:layout_constraintStart_toStartOf="@id/staticMapImageView"
tools:visibility="visible" />
<androidx.constraintlayout.widget.Guideline
android:id="@+id/staticMapVerticalCenter"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
app:layout_constraintGuide_percent="0.5" />
</androidx.constraintlayout.widget.ConstraintLayout>