ref: 62b57985d6c036ff48ec92e700676ff422cfc442
app/src/main/res/layout/suggestion.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 |
<?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" android:id="@+id/suggestion" android:layout_width="match_parent" android:layout_height="72dp"> <!-- todo wrap_content --> <ImageView android:id="@+id/suggestion_image" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginStart="8dp" android:layout_marginTop="8dp" android:layout_marginBottom="8dp" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toTopOf="parent" /> <TextView android:id="@+id/suggestion_title" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_marginStart="8dp" android:layout_marginTop="8dp" android:layout_marginEnd="8dp" android:text="" android:textAppearance="@style/Theme.Bimba.SearchResult.Title" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toEndOf="@+id/suggestion_image" app:layout_constraintTop_toTopOf="parent" /> <TextView android:id="@+id/suggestion_description" style="@style/Theme.Bimba.SearchResult.Description" android:layout_width="0dp" android:layout_height="0dp" android:layout_marginEnd="8dp" android:maxLines="4" android:ellipsize="end" android:text="" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="@+id/suggestion_title" app:layout_constraintTop_toBottomOf="@+id/suggestion_title" /> </androidx.constraintlayout.widget.ConstraintLayout> |