27 lines
971 B
XML
27 lines
971 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="50dp"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:background="@color/secondaryColour"
|
|
android:layout_margin="20dp">
|
|
|
|
<ImageView
|
|
android:layout_width="50dp"
|
|
android:layout_height="50dp"
|
|
android:id="@+id/routeImage"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
/>
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:id="@+id/route_name"
|
|
android:text="test text"
|
|
android:gravity="center"
|
|
android:textSize="20dp"
|
|
app:layout_constraintStart_toEndOf="@+id/routeImage"
|
|
/>
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout> |