|
|
@@ -0,0 +1,121 @@
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
+<com.usai.ratradefiling.result.cell.ResultCustomerCell xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
+ xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
+ xmlns:tools="http://schemas.android.com/tools"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:orientation="vertical"
|
|
|
+ >
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginLeft="5dp"
|
|
|
+ android:layout_marginRight="5dp"
|
|
|
+ android:layout_marginBottom="0dp"
|
|
|
+ android:layout_marginTop="5dp"
|
|
|
+ android:background="@drawable/result_cell_bg"
|
|
|
+ android:clipChildren="true"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ >
|
|
|
+
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:orientation="vertical"
|
|
|
+ android:layout_marginRight="5dp"
|
|
|
+ android:layout_marginEnd="5dp"
|
|
|
+ >
|
|
|
+
|
|
|
+ <androidx.constraintlayout.widget.ConstraintLayout
|
|
|
+ android:id="@+id/cell_content_view"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="96dp"
|
|
|
+ android:clipChildren="true">
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:id="@+id/iv_status"
|
|
|
+ android:layout_width="42dp"
|
|
|
+ android:layout_height="42dp"
|
|
|
+ android:layout_marginTop="4dp"
|
|
|
+ app:layout_constraintStart_toStartOf="@+id/tv_contactid"
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/tv_company"
|
|
|
+ app:srcCompat="@mipmap/ic_launcher" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tv_contactid"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="13dp"
|
|
|
+ android:layout_marginTop="8dp"
|
|
|
+ android:layout_marginEnd="13dp"
|
|
|
+ android:ellipsize="end"
|
|
|
+ android:singleLine="true"
|
|
|
+ android:text="TextView"
|
|
|
+ android:textColor="@color/icon_gray"
|
|
|
+ android:textSize="12.7sp"
|
|
|
+ android:textStyle="bold"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="parent" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tv_company"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="2dp"
|
|
|
+ android:layout_marginEnd="13dp"
|
|
|
+ android:singleLine="true"
|
|
|
+ android:text="TextView"
|
|
|
+ android:textColor="@color/icon_red"
|
|
|
+ android:textSize="9.7sp"
|
|
|
+
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="@+id/tv_contactid"
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/tv_contactid" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tv_address"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="0dp"
|
|
|
+ android:layout_marginStart="7dp"
|
|
|
+ android:ellipsize="end"
|
|
|
+ android:singleLine="false"
|
|
|
+ android:text="TextView"
|
|
|
+ android:textColor="@color/TFGray"
|
|
|
+ android:textSize="12sp"
|
|
|
+ app:layout_constraintBottom_toBottomOf="@+id/iv_status"
|
|
|
+ app:layout_constraintEnd_toEndOf="@+id/tv_company"
|
|
|
+ app:layout_constraintStart_toEndOf="@+id/iv_status"
|
|
|
+ app:layout_constraintTop_toTopOf="@+id/iv_status" />
|
|
|
+
|
|
|
+ </androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:id="@+id/result_addition_view"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:orientation="vertical"
|
|
|
+ android:layout_marginLeft="13dp"
|
|
|
+ android:layout_marginStart="13dp"
|
|
|
+ >
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+<!-- <View-->
|
|
|
+<!-- android:id="@+id/v_transport_stage"-->
|
|
|
+<!-- android:layout_width="5dp"-->
|
|
|
+<!-- android:layout_height="match_parent"-->
|
|
|
+<!-- android:background="@drawable/list_corner_transport_stage_bg_0"-->
|
|
|
+<!-- />-->
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+</com.usai.ratradefiling.result.cell.ResultCustomerCell>
|