125 lines
4.9 KiB
XML
125 lines
4.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:background="@color/white"
|
|
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"
|
|
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="1"
|
|
android:layout_gravity="center"
|
|
android:gravity="end"
|
|
android:layout_marginRight="20dp"
|
|
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>
|
|
|
|
<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="4">
|
|
|
|
<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="Order Quantity"
|
|
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/recyclerviewpopup"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"/>
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
</LinearLayout> |