60 lines
No EOL
2.1 KiB
XML
60 lines
No EOL
2.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:minHeight="?attr/listPreferredItemHeight"
|
|
android:orientation="horizontal"
|
|
android:paddingBottom="12dp"
|
|
android:paddingLeft="16dp"
|
|
android:paddingRight="16dp"
|
|
android:paddingTop="8dp">
|
|
|
|
<ImageView
|
|
android:id="@+id/imageView"
|
|
android:layout_width="24dp"
|
|
android:layout_height="24dp"
|
|
android:layout_marginRight="8dp"
|
|
android:layout_gravity="top"
|
|
android:scaleType="centerInside"
|
|
android:visibility="visible"/>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
android:id="@+id/title"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:paddingRight="16dp"
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Subhead"
|
|
tools:text="Amsterdam"/>
|
|
|
|
<TextView
|
|
android:id="@+id/distance"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="right"
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Small"
|
|
tools:text="100 km"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/subtitle"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Small"
|
|
tools:text="City"/>
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout> |