161 lines
6.9 KiB
XML
161 lines
6.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
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:orientation="vertical"
|
|
android:layout_margin="20dp">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:weightSum="2">
|
|
<TextView
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1.5"
|
|
android:text="Product Details"
|
|
android:textColor="@color/black"
|
|
android:textSize="16dp"
|
|
android:fontFamily="@font/popins_bold">
|
|
</TextView>
|
|
<LinearLayout
|
|
android:id="@+id/closepopup"
|
|
android:layout_width="0dp"
|
|
android:layout_weight="0.5"
|
|
android:layout_gravity="center"
|
|
android:gravity="end"
|
|
android:layout_marginRight="10dp"
|
|
android:layout_height="wrap_content">
|
|
<ImageView
|
|
android:layout_width="20dp"
|
|
android:layout_height="20dp"
|
|
android:layout_gravity="center"
|
|
android:src="@drawable/close_1" />
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
<HorizontalScrollView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
<LinearLayout
|
|
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:orientation="horizontal"
|
|
android:layout_marginTop="20dp"
|
|
android:background="@drawable/border_top_radius"
|
|
android:weightSum="7">
|
|
|
|
<TextView
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:gravity="center"
|
|
android:layout_gravity="center"
|
|
android:padding="10dp"
|
|
android:fontFamily="@font/popins_medimum"
|
|
android:text="SL.NO"
|
|
android:textColor="@color/black"/>
|
|
|
|
<TextView
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:gravity="center"
|
|
android:layout_gravity="center"
|
|
android:padding="10dp"
|
|
android:fontFamily="@font/popins_medimum"
|
|
android:text="PRODUCT NAME"
|
|
android:textColor="@color/black"/>
|
|
|
|
<TextView
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:gravity="center"
|
|
android:layout_gravity="center"
|
|
android:padding="10dp"
|
|
android:fontFamily="@font/popins_medimum"
|
|
android:text="UOM"
|
|
android:textColor="@color/black"/>
|
|
|
|
<TextView
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:gravity="center"
|
|
android:padding="10dp"
|
|
android:layout_gravity="center"
|
|
android:fontFamily="@font/popins_medimum"
|
|
android:text="MRP"
|
|
android:textColor="@color/black"/>
|
|
<TextView
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:gravity="center"
|
|
android:padding="10dp"
|
|
android:layout_gravity="center"
|
|
android:fontFamily="@font/popins_medimum"
|
|
android:text="Retail Price"
|
|
android:textColor="@color/black"/>
|
|
<TextView
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:gravity="center"
|
|
android:padding="10dp"
|
|
android:layout_gravity="center"
|
|
android:fontFamily="@font/popins_medimum"
|
|
android:text="Accepted Quantity"
|
|
android:textColor="@color/black"/>
|
|
<TextView
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:gravity="center"
|
|
android:padding="10dp"
|
|
android:layout_gravity="center"
|
|
android:fontFamily="@font/popins_medimum"
|
|
android:text="IMEI/SERIAL-NO"
|
|
android:textColor="@color/black"/>
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
<ImageView
|
|
android:id="@+id/noData"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginVertical="50dp"
|
|
android:src="@drawable/nodatafound"
|
|
android:visibility="gone">
|
|
</ImageView>
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="@dimen/dp_5"
|
|
android:orientation="vertical">
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/entryrecyclerviewpopup"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"/>
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
</HorizontalScrollView>
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout> |