2022-03-10 14:31:03 +00:00
|
|
|
<?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:background="#ffffff"
|
|
|
|
android:id="@+id/layoutVehicle">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:padding="2dp"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:layout_weight="0">
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/imageViewVehicleIcon"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:src="@drawable/cabrioletred"
|
|
|
|
android:padding="2dp"
|
|
|
|
android:layout_weight="0" />
|
|
|
|
</LinearLayout>
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/textViewVehicleName"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:text="Large Text"
|
|
|
|
android:textSize="14dp"
|
|
|
|
android:textColor="#000000"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:paddingLeft="3dp"
|
|
|
|
android:layout_weight="1"/>
|
|
|
|
<LinearLayout
|
2022-03-28 11:02:10 +00:00
|
|
|
android:id="@+id/linearLayoutChecked"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="0"
|
|
|
|
android:background="@drawable/checked"
|
|
|
|
android:orientation="horizontal" />
|
2022-03-10 14:31:03 +00:00
|
|
|
</LinearLayout>
|