mirror of
https://github.com/commons-app/apps-android-commons.git
synced 2025-10-29 05:43:55 +01:00
* UI design for legend to explain the colors of the nearby pins * Add listener for the button to toggle the visibility of the legend (make it hideable) * Change wording for legend and make text localizable * Fixed typo * Fixed typo --------- Co-authored-by: Nicolas Raoul <nicolas.raoul@gmail.com>
74 lines
2.8 KiB
XML
74 lines
2.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:background="#BFFFFFFF"
|
|
android:orientation="vertical">
|
|
|
|
<ImageView
|
|
android:id="@+id/imageRed"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="0dp"
|
|
app:layout_constraintBottom_toTopOf="@+id/imageGreen"
|
|
app:layout_constraintEnd_toEndOf="@+id/imageGreen"
|
|
app:layout_constraintStart_toStartOf="@+id/imageGreen"
|
|
app:srcCompat="@drawable/ic_custom_map_marker_red" />
|
|
|
|
<TextView
|
|
android:id="@+id/textRed"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="0dp"
|
|
android:text="@string/red_pin"
|
|
android:textColor="#F74D4D"
|
|
android:textSize="12sp"
|
|
app:layout_constraintBottom_toBottomOf="@+id/imageRed"
|
|
app:layout_constraintStart_toEndOf="@+id/imageRed"
|
|
app:layout_constraintTop_toTopOf="@+id/imageRed" />
|
|
|
|
<ImageView
|
|
android:id="@+id/imageGreen"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="0dp"
|
|
app:layout_constraintBottom_toTopOf="@+id/imageGrey"
|
|
app:layout_constraintEnd_toEndOf="@+id/imageGrey"
|
|
app:layout_constraintStart_toStartOf="@+id/imageGrey"
|
|
app:srcCompat="@drawable/ic_custom_map_marker_green" />
|
|
|
|
<TextView
|
|
android:id="@+id/textGreen"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="0dp"
|
|
android:text="@string/green_pin"
|
|
android:textColor="#1F7123"
|
|
android:textSize="12sp"
|
|
app:layout_constraintBottom_toBottomOf="@+id/imageGreen"
|
|
app:layout_constraintStart_toEndOf="@+id/imageGreen"
|
|
app:layout_constraintTop_toTopOf="@+id/imageGreen" />
|
|
|
|
<ImageView
|
|
android:id="@+id/imageGrey"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="0dp"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:srcCompat="@drawable/ic_custom_map_marker_grey" />
|
|
|
|
<TextView
|
|
android:id="@+id/textGrey"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/grey_pin"
|
|
android:textColor="#454547"
|
|
android:textSize="12sp"
|
|
app:layout_constraintBottom_toBottomOf="@+id/imageGrey"
|
|
app:layout_constraintStart_toEndOf="@+id/imageGrey"
|
|
app:layout_constraintTop_toTopOf="@+id/imageGrey" />
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|