51 lines
2.2 KiB
XML
51 lines
2.2 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"
|
|
android:orientation="vertical"
|
|
android:id="@+id/layout"
|
|
android:background="@color/black"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
<androidx.appcompat.widget.AppCompatImageView
|
|
android:id="@+id/offer_icon"
|
|
android:layout_width="40dp"
|
|
android:layout_height="40dp"
|
|
android:src="@drawable/ic_offer"
|
|
android:tint="@color/red"
|
|
android:elevation="10dp"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent"/>
|
|
<androidx.appcompat.widget.AppCompatImageView
|
|
android:id="@+id/service_icon"
|
|
android:padding="@dimen/small_padding"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="80dp"
|
|
android:minWidth="80dp"
|
|
android:contentDescription="@null"
|
|
android:layout_marginStart="32dp"
|
|
android:layout_marginEnd="32dp"
|
|
app:layout_constraintEnd_toStartOf="@+id/linearLayoutCompat"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent"/>
|
|
<androidx.appcompat.widget.LinearLayoutCompat
|
|
android:orientation="vertical"
|
|
android:id="@+id/linearLayoutCompat"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintEnd_toStartOf="@+id/offer_icon"
|
|
app:layout_constraintStart_toEndOf="@+id/service_icon"
|
|
app:layout_constraintTop_toTopOf="parent">
|
|
<TextView
|
|
android:id="@+id/name"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
style="@style/Stations.ServiceName"/>
|
|
<TextView
|
|
android:id="@+id/type"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:maxLines="1"
|
|
style="@style/Stations.ServiceDescription"/>
|
|
</androidx.appcompat.widget.LinearLayoutCompat>
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|