Bimba.git

ref: 8693f82819b7dc79e894edcff7d67d69c7f68b2b

app/src/main/res/layout/journey_leg.xml


  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
<?xml version="1.0" encoding="utf-8"?>
<!--
SPDX-FileCopyrightText: Adam Evyčędo

SPDX-License-Identifier: GPL-3.0-or-later
-->
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
	android:layout_width="wrap_content"
	android:layout_height="wrap_content"
	xmlns:app="http://schemas.android.com/apk/res-auto"
	android:padding="8dp"
	xmlns:tool="http://schemas.android.com/tools">
	<ImageView
		android:id="@+id/leg_origin_image"
		android:layout_width="wrap_content"
		android:layout_height="wrap_content"
		android:src="@drawable/origin"
		android:contentDescription="beginning of journey's leg"
		app:layout_constraintStart_toStartOf="parent"
		app:layout_constraintTop_toTopOf="parent" />

	<com.google.android.material.textview.MaterialTextView
		android:id="@+id/leg_origin"
		android:layout_width="wrap_content"
		android:layout_height="wrap_content"
		android:layout_marginStart="8dp"
		android:textAppearance="@style/TextAppearance.Material3.BodyLarge"
		app:layout_constraintBottom_toBottomOf="@+id/leg_origin_image"
		app:layout_constraintStart_toEndOf="@+id/leg_origin_image"
		app:layout_constraintTop_toTopOf="@+id/leg_origin_image"
		tool:text="Polna" />

	<com.google.android.material.textview.MaterialTextView
		android:id="@+id/leg_origin_time"
		android:layout_width="wrap_content"
		android:layout_height="wrap_content"
		android:layout_marginStart="8dp"
		android:textAppearance="@style/TextAppearance.Material3.BodyLarge"
		app:layout_constraintBottom_toBottomOf="@+id/leg_origin"
		app:layout_constraintStart_toEndOf="@+id/leg_origin"
		app:layout_constraintTop_toTopOf="@+id/leg_origin"
		tool:text="11:25" />

	<ImageView
		android:id="@+id/leg_mode_image"
		android:layout_width="wrap_content"
		android:layout_height="wrap_content"
		android:layout_marginTop="8dp"
		android:src="@drawable/bike"
		android:contentDescription="mode of journey's leg: walk"
		app:layout_constraintStart_toStartOf="parent"
		app:layout_constraintTop_toBottomOf="@+id/leg_origin_image" />

	<com.google.android.material.textview.MaterialTextView
		android:id="@+id/leg_line"
		android:layout_width="wrap_content"
		android:layout_height="wrap_content"
		android:layout_marginStart="8dp"
		android:textAppearance="@style/TextAppearance.Material3.BodyLarge"
		app:layout_constraintBottom_toBottomOf="@+id/leg_mode_image"
		app:layout_constraintStart_toEndOf="@+id/leg_mode_image"
		app:layout_constraintTop_toTopOf="@+id/leg_mode_image"
		tool:text="610" />

	<com.google.android.material.textview.MaterialTextView
		android:id="@+id/leg_distance"
		android:layout_width="wrap_content"
		android:layout_height="wrap_content"
		android:layout_marginStart="16dp"
		android:textAppearance="@style/TextAppearance.Material3.LabelSmall"
		app:layout_constraintBottom_toBottomOf="@+id/leg_line"
		app:layout_constraintStart_toEndOf="@+id/leg_line"
		app:layout_constraintTop_toTopOf="@+id/leg_line"
		tool:text="12 stops" />

	<ImageView
		android:id="@+id/leg_destination_image"
		android:layout_width="wrap_content"
		android:layout_height="wrap_content"
		android:layout_marginTop="8dp"
		android:src="@drawable/destination"
		android:contentDescription="end of journey's leg"
		app:layout_constraintStart_toStartOf="parent"
		app:layout_constraintTop_toBottomOf="@+id/leg_mode_image" />

	<com.google.android.material.textview.MaterialTextView
		android:id="@+id/leg_destination"
		android:layout_width="wrap_content"
		android:layout_height="wrap_content"
		android:layout_marginStart="8dp"
		android:textAppearance="@style/TextAppearance.Material3.BodyLarge"
		app:layout_constraintBottom_toBottomOf="@+id/leg_destination_image"
		app:layout_constraintStart_toEndOf="@+id/leg_destination_image"
		app:layout_constraintTop_toTopOf="@+id/leg_destination_image"
		tool:text="Dębiec" />

	<com.google.android.material.textview.MaterialTextView
		android:id="@+id/leg_destination_time"
		android:layout_width="wrap_content"
		android:layout_height="wrap_content"
		android:layout_marginStart="8dp"
		android:textAppearance="@style/TextAppearance.Material3.BodyLarge"
		app:layout_constraintBottom_toBottomOf="@+id/leg_destination"
		app:layout_constraintStart_toEndOf="@+id/leg_destination"
		app:layout_constraintTop_toTopOf="@+id/leg_destination"
		tool:text="11:30" />

</androidx.constraintlayout.widget.ConstraintLayout>