54 lines
1.9 KiB
XML
54 lines
1.9 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:background="?attr/selectableItemBackground"
|
||
|
|
android:orientation="vertical"
|
||
|
|
android:paddingHorizontal="12dp"
|
||
|
|
android:paddingVertical="8dp">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/shelterAddress"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:textColor="@color/text_primary"
|
||
|
|
android:textSize="14sp"
|
||
|
|
android:textStyle="bold"
|
||
|
|
tools:text="Storgata 1 - Bunker (off)" />
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:orientation="horizontal">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/shelterDistance"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:textColor="@color/shelter_primary"
|
||
|
|
android:textSize="13sp"
|
||
|
|
android:textStyle="bold"
|
||
|
|
tools:text="1.2 km" />
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/shelterCapacity"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_marginStart="12dp"
|
||
|
|
android:textColor="@color/text_secondary"
|
||
|
|
android:textSize="12sp"
|
||
|
|
tools:text="400 plasser" />
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/shelterRoomNr"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_marginStart="12dp"
|
||
|
|
android:textColor="@color/text_secondary"
|
||
|
|
android:textSize="12sp"
|
||
|
|
tools:text="Rom 776" />
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
</LinearLayout>
|