Fix pin position in static map
This commit is contained in:
parent
889e09a891
commit
f2b66c5fb5
|
@ -21,13 +21,13 @@
|
||||||
android:layout_width="51dp"
|
android:layout_width="51dp"
|
||||||
android:layout_height="55dp"
|
android:layout_height="55dp"
|
||||||
android:layout_gravity="center"
|
android:layout_gravity="center"
|
||||||
android:layout_marginBottom="28dp"
|
|
||||||
android:importantForAccessibility="no"
|
android:importantForAccessibility="no"
|
||||||
android:src="@drawable/bg_map_user_pin"
|
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_constraintEnd_toEndOf="@id/staticMapImageView"
|
||||||
app:layout_constraintStart_toStartOf="@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
|
<TextView
|
||||||
android:id="@+id/staticMapErrorTextView"
|
android:id="@+id/staticMapErrorTextView"
|
||||||
|
@ -55,4 +55,11 @@
|
||||||
app:layout_constraintStart_toStartOf="@id/staticMapImageView"
|
app:layout_constraintStart_toStartOf="@id/staticMapImageView"
|
||||||
tools:visibility="visible" />
|
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>
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||||
|
|
Loading…
Reference in New Issue