1st version that works
This commit is contained in:
40
safeDispatch/src/main/res/layout-large/row_livevehicle.xml
Normal file
40
safeDispatch/src/main/res/layout-large/row_livevehicle.xml
Normal 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>
|
Reference in New Issue
Block a user