55 lines
1.8 KiB
XML
55 lines
1.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:id="@+id/layoutVehicle"
|
|
android:background="@layout/style_grid">
|
|
|
|
<LinearLayout
|
|
android:layout_height="wrap_content"
|
|
android:layout_width="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_margin="1dp"
|
|
android:layout_weight="0">
|
|
<ImageView
|
|
android:id="@+id/imageViewIcon"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:src="@drawable/ambulance"
|
|
android:layout_margin="3dp"
|
|
android:layout_weight="0" />
|
|
</LinearLayout>
|
|
<LinearLayout
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center_vertical"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_weight="1">
|
|
<TextView
|
|
android:id="@+id/textViewName"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="Large Text"
|
|
android:textColor="#000000"
|
|
android:gravity="center_vertical"
|
|
android:paddingLeft="3dp"
|
|
android:textSize="16dp"
|
|
android:layout_weight="0"/>
|
|
</LinearLayout>
|
|
<LinearLayout
|
|
android:layout_height="wrap_content"
|
|
android:layout_width="wrap_content"
|
|
android:layout_margin="1dp"
|
|
android:layout_weight="0"
|
|
android:layout_gravity="center_vertical">
|
|
<ImageView
|
|
android:id="@+id/imageViewChecked"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:src="@drawable/checked"
|
|
android:layout_margin="3dp"
|
|
android:layout_weight="0" />
|
|
</LinearLayout>
|
|
|
|
</LinearLayout> |