1st version that works

This commit is contained in:
2022-03-14 11:53:00 +02:00
parent ee2884b2ff
commit 3806d2c80d
617 changed files with 17293 additions and 4470 deletions

View File

@ -0,0 +1,40 @@
<?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
android:id="@+id/linearLayoutChecked"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="0"
android:background="@drawable/checked">
</LinearLayout>
</LinearLayout>