123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- <?xml version="1.0" encoding="utf-8"?>
- <layout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- xmlns:binding="http://schemas.android.com/apk/res-auto"
- xmlns:tools="http://schemas.android.com/tools">
- <data>
- <variable
- name="item"
- type="java.lang.String" />
- </data>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginLeft="@dimen/d_5dp"
- android:layout_marginTop="-10dp"
- android:layout_marginRight="@dimen/d_5dp"
- android:background="@drawable/shadow_round_gray_bg"
- android:orientation="vertical">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="@dimen/d_18dp"
- android:gravity="center_vertical"
- android:orientation="horizontal">
- <ImageView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="@dimen/d_20dp"
- android:src="@drawable/my_test_date" />
- <com.guadou.lib_baselib.font_text_view.TextViewRegular
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginLeft="12dp"
- android:layout_weight="1"
- android:text="Swab Test Date"
- android:textColor="@color/input_black_text_5D"
- android:textSize="@dimen/d_15sp" />
- <com.guadou.lib_baselib.font_text_view.TextViewSBold
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginRight="@dimen/d_20dp"
- android:text="May 21, 2021"
- android:textColor="@color/input_black_text_5D"
- android:textSize="@dimen/d_15sp" />
- </LinearLayout>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="@dimen/d_18dp"
- android:gravity="center_vertical"
- android:orientation="horizontal">
- <ImageView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="@dimen/d_20dp"
- android:src="@drawable/my_test_result" />
- <com.guadou.lib_baselib.font_text_view.TextViewRegular
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginLeft="12dp"
- android:layout_weight="1"
- android:text="Result"
- android:textColor="@color/input_black_text_5D"
- android:textSize="@dimen/d_15sp" />
- <com.guadou.lib_baselib.font_text_view.TextViewSBold
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginRight="@dimen/d_20dp"
- android:text="Negative"
- android:textColor="@color/input_blue_text"
- android:textSize="@dimen/d_15sp" />
- </LinearLayout>
- <com.guadou.lib_baselib.font_text_view.TextViewRegular
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="right"
- android:layout_marginTop="@dimen/d_15dp"
- android:layout_marginRight="@dimen/d_20dp"
- android:text="Your admin will contact you soon."
- android:textColor="#FF0000"
- android:textSize="16sp" />
- <View
- android:layout_width="1dp"
- android:layout_height="20dp" />
- </LinearLayout>
- </layout>
|