safedispatch-mobile/libSafeMobile/src/main/res/layout/row_alert.xml
2022-03-14 11:53:00 +02:00

83 lines
2.9 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/layoutAlert"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:background="@layout/row_vehicle_style"
android:paddingLeft="10dp"
android:paddingRight="10dp"
android:gravity="center"
android:focusable="false">
<ImageView
android:id="@+id/imageViewAlert"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/alert"
android:layout_margin="4dp"
android:layout_weight="0"
android:focusable="false" />
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center_vertical"
android:layout_gravity="center_vertical"
android:layout_weight="1"
android:focusable="false" >
<TextView
android:id="@+id/textViewUnitName"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:text="Large Text"
android:textColor="#000000"
android:gravity="center_vertical"
android:paddingLeft="3dp"
android:textSize="18dp"
android:layout_weight="0"
android:focusable="false" />
<TextView
android:id="@+id/textViewType"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="Large Text"
android:textColor="#999999"
android:gravity="center_vertical"
android:layout_marginTop="10dp"
android:paddingLeft="3dp"
android:textSize="12dp"
android:layout_weight="1"
android:focusable="false" />
</LinearLayout>
<TextView
android:id="@+id/textViewDate"
android:layout_width="wrap_content"
android:layout_height="30dp"
android:gravity="center_vertical"
android:paddingLeft="5dp"
android:paddingRight="5dp"
android:layout_margin="2dp"
android:text="Large Text"
android:textColor="#000000"
android:textSize="16dp"
android:focusable="false" />
<ImageView
android:id="@+id/imageViewSeparator"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/separator"
android:layout_margin="2dp"
android:layout_weight="0"
android:focusable="false"
android:visibility="gone" />
<ImageView
android:id="@+id/imageViewRecycle"
android:layout_width="wrap_content"
android:layout_height="36dp"
android:src="@drawable/recycle"
android:layout_marginTop="2dp"
android:layout_marginBottom="2dp"
android:layout_weight="0"
android:focusable="false"
android:visibility="gone" />
</LinearLayout>