Bimba.git

ref: translations

app/src/main/res/layout/result.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
<?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"
	xmlns:app="http://schemas.android.com/apk/res-auto"
	xmlns:tool="http://schemas.android.com/tools"
	android:id="@+id/suggestion"
	android:layout_width="match_parent"
	android:layout_height="wrap_content">

	<ImageView
		android:id="@+id/suggestion_image"
		android:layout_width="wrap_content"
		android:layout_height="wrap_content"
		android:layout_marginStart="8dp"
		app:layout_constraintBottom_toBottomOf="@+id/suggestion_title"
		app:layout_constraintStart_toStartOf="parent"
		app:layout_constraintTop_toTopOf="@+id/suggestion_title"
		tool:ignore="ContentDescription"
		tool:src="@drawable/vehicle_black" />

	<!-- todo maxWidth or separate layout for graphView -->
	<com.google.android.material.textview.MaterialTextView
		android:id="@+id/suggestion_title"
		android:maxWidth="320dp"
		android:layout_width="wrap_content"
		android:layout_height="wrap_content"
		android:layout_marginStart="8dp"
		android:layout_marginTop="8dp"
		android:textAppearance="@style/Theme.Bimba.SearchResult.Title"
		app:layout_constraintStart_toEndOf="@+id/suggestion_image"
		app:layout_constraintTop_toTopOf="parent"
		tool:text="Tower Hill" />

	<com.google.android.material.textview.MaterialTextView
		android:id="@+id/feed_name"
		android:layout_width="wrap_content"
		android:layout_height="wrap_content"
		android:visibility="gone"
		android:textAppearance="@style/TextAppearance.Material3.LabelSmall"
		app:layout_constraintStart_toStartOf="@+id/suggestion_title"
		app:layout_constraintTop_toBottomOf="@+id/suggestion_title"
		tool:text="TfL London" />

	<com.google.android.material.textview.MaterialTextView
		android:id="@+id/suggestion_description"
		style="@style/Theme.Bimba.SearchResult.Description"
		android:layout_width="wrap_content"
		android:layout_height="wrap_content"
		android:maxWidth="360dp"
		android:layout_marginTop="4dp"
		app:layout_constraintBottom_toBottomOf="parent"
		app:layout_constraintStart_toStartOf="@+id/suggestion_title"
		app:layout_constraintTop_toBottomOf="@+id/feed_name"
		tool:text="Metropolitan » Baker Street, Tower Hill The Monument, Westminster, Piccadilly Circus, Oxford Street" />

</androidx.constraintlayout.widget.ConstraintLayout>