773 lines
25 KiB
XML
773 lines
25 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="match_parent"
|
||
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||
|
|
android:orientation="vertical">
|
||
|
|
<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="7dp"
|
||
|
|
android:gravity="end"
|
||
|
|
android:layout_marginEnd="5dp">
|
||
|
|
|
||
|
|
<Button
|
||
|
|
android:id="@+id/editclick"
|
||
|
|
android:layout_width="50dp"
|
||
|
|
android:layout_height="30dp"
|
||
|
|
android:textSize="10dp"
|
||
|
|
android:background="@drawable/left_curve_button"
|
||
|
|
android:layout_marginEnd="3dp"
|
||
|
|
android:textColor="@color/white"
|
||
|
|
android:textAllCaps="false"
|
||
|
|
android:text="Edit">
|
||
|
|
</Button>
|
||
|
|
<Button
|
||
|
|
android:id="@+id/deleteclick"
|
||
|
|
android:layout_width="60dp"
|
||
|
|
android:layout_height="30dp"
|
||
|
|
android:textSize="10dp"
|
||
|
|
android:background="@drawable/right_curve_button"
|
||
|
|
android:textColor="@color/white"
|
||
|
|
android:textAllCaps="false"
|
||
|
|
android:text="Delete">
|
||
|
|
</Button>
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_marginHorizontal="6dp"
|
||
|
|
android:layout_marginTop="3dp"
|
||
|
|
android:id="@+id/summaryHeader"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="60dp"
|
||
|
|
android:orientation="horizontal"
|
||
|
|
android:gravity="center">
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:visibility="gone"
|
||
|
|
android:id="@+id/slno"
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_weight="1.7"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:gravity="center">
|
||
|
|
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:layout_marginStart="5dp"
|
||
|
|
android:id="@+id/summarySlNo"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:fontFamily="@font/gilorylight"
|
||
|
|
android:text="Sl.No"
|
||
|
|
android:textStyle="bold"
|
||
|
|
android:textAlignment="center"
|
||
|
|
android:textColor="@color/black"
|
||
|
|
android:textSize="12sp" />
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:visibility="visible"
|
||
|
|
android:id="@+id/itemname"
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_weight="5"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:gravity="center">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/summaryItem"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:text=" Item Name"
|
||
|
|
android:textStyle="bold"
|
||
|
|
android:gravity="center"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:fontFamily="@font/gilorylight"
|
||
|
|
android:textColor="@color/black"
|
||
|
|
android:textSize="13sp" />
|
||
|
|
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:visibility="gone"
|
||
|
|
android:id="@+id/mrp"
|
||
|
|
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_weight="1.5"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:gravity="center">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/summaryMrp"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:text="MRP"
|
||
|
|
android:textStyle="bold"
|
||
|
|
android:fontFamily="@font/gilorylight"
|
||
|
|
android:textAlignment="center"
|
||
|
|
android:textColor="@color/black"
|
||
|
|
android:textSize="13sp" />
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:visibility="gone"
|
||
|
|
android:id="@+id/discount"
|
||
|
|
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_weight="1"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:gravity="center">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/summmaryDiscount"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:text="%"
|
||
|
|
android:textStyle="bold"
|
||
|
|
android:fontFamily="@font/gilorylight"
|
||
|
|
android:textAlignment="center"
|
||
|
|
android:textColor="@color/black"
|
||
|
|
android:textSize="16sp" />
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:visibility="gone"
|
||
|
|
android:id="@+id/qty"
|
||
|
|
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_weight="2.5"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:gravity="center">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/summaryQuantity"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:textSize="14sp"
|
||
|
|
android:text="Qty"
|
||
|
|
android:textStyle="bold"
|
||
|
|
android:fontFamily="@font/gilorylight"
|
||
|
|
android:textAlignment="center"
|
||
|
|
android:textColor="@color/black"/>
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:visibility="gone"
|
||
|
|
android:id="@+id/rate"
|
||
|
|
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_weight="2"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:gravity="center">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/summaryRate"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:textSize="14sp"
|
||
|
|
android:text="Rt"
|
||
|
|
android:textStyle="bold"
|
||
|
|
android:fontFamily="@font/gilorylight"
|
||
|
|
android:textAlignment="center"
|
||
|
|
android:textColor="@color/black"/>
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:visibility="gone"
|
||
|
|
android:id="@+id/amt"
|
||
|
|
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_weight="2.5"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:gravity="center">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/summaryPrice"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:text="Amt"
|
||
|
|
android:textStyle="bold"
|
||
|
|
android:textSize="14sp"
|
||
|
|
android:fontFamily="@font/gilorylight"
|
||
|
|
android:textAlignment="center"
|
||
|
|
android:textColor="@color/black" />
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:visibility="gone"
|
||
|
|
|
||
|
|
android:id="@+id/editbtn"
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_weight="1.5"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:gravity="center"
|
||
|
|
android:layout_gravity="center">
|
||
|
|
|
||
|
|
|
||
|
|
<ImageView
|
||
|
|
android:id="@+id/edit"
|
||
|
|
android:layout_width="25dp"
|
||
|
|
android:layout_height="25dp"
|
||
|
|
android:layout_marginRight="@dimen/dp_10"
|
||
|
|
android:src="@drawable/edit_icon"
|
||
|
|
app:tint="@color/black"
|
||
|
|
>
|
||
|
|
|
||
|
|
</ImageView>
|
||
|
|
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:visibility="gone"
|
||
|
|
|
||
|
|
android:id="@+id/clearAll"
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_weight="1.5"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:gravity="center"
|
||
|
|
android:layout_gravity="center">
|
||
|
|
|
||
|
|
|
||
|
|
<ImageView
|
||
|
|
android:id="@+id/summaryDeleteIcon"
|
||
|
|
android:layout_width="25dp"
|
||
|
|
android:layout_height="25dp"
|
||
|
|
android:layout_marginRight="@dimen/dp_10"
|
||
|
|
android:src="@drawable/trash_can_delete"
|
||
|
|
app:tint="@color/black"
|
||
|
|
>
|
||
|
|
|
||
|
|
</ImageView>
|
||
|
|
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:gravity="center"
|
||
|
|
|
||
|
|
android:layout_marginHorizontal="6dp"
|
||
|
|
android:orientation="horizontal">
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_weight="1.7"
|
||
|
|
android:id="@+id/sl_No2"
|
||
|
|
android:visibility="gone"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:gravity="center">
|
||
|
|
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
|
||
|
|
android:fontFamily="@font/popins_semibold"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:text="1"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:gravity="center"
|
||
|
|
android:textAlignment="center"
|
||
|
|
android:textColor="@color/black"
|
||
|
|
android:textSize="13sp" />
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_weight="5"
|
||
|
|
android:id="@+id/itemname2"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:gravity="center">
|
||
|
|
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/first"
|
||
|
|
android:fontFamily="@font/popins_semibold"
|
||
|
|
android:layout_marginLeft="@dimen/dp_5"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:text="Milky Bar"
|
||
|
|
android:gravity="center"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:textColor="@color/black"
|
||
|
|
android:textSize="13sp" />
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_weight="1.5"
|
||
|
|
android:id="@+id/mrp2"
|
||
|
|
android:visibility="gone"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:gravity="center">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:fontFamily="@font/popins_semibold"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:text="20"
|
||
|
|
android:textColor="@color/black"
|
||
|
|
android:textSize="13sp"
|
||
|
|
android:gravity="center"
|
||
|
|
/>
|
||
|
|
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_weight="1"
|
||
|
|
android:visibility="gone"
|
||
|
|
android:id="@+id/discount2"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:gravity="center">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:fontFamily="@font/popins_semibold"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:text="-"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:gravity="center"
|
||
|
|
android:textAlignment="center"
|
||
|
|
android:textColor="@color/black"
|
||
|
|
android:textSize="13sp"/>
|
||
|
|
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_weight="2.5"
|
||
|
|
android:id="@+id/qty2"
|
||
|
|
android:visibility="gone"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:gravity="center">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:fontFamily="@font/popins_semibold"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:layout_weight="2"
|
||
|
|
android:text="2"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:gravity="center"
|
||
|
|
android:textAlignment="center"
|
||
|
|
android:textColor="@color/black"
|
||
|
|
android:textSize="13sp" />
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_weight="2"
|
||
|
|
android:id="@+id/rate2"
|
||
|
|
android:visibility="gone"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:gravity="center">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:fontFamily="@font/popins_semibold"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:text="-"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:gravity="center"
|
||
|
|
android:textAlignment="center"
|
||
|
|
android:textColor="@color/black"
|
||
|
|
android:textSize="13sp" />
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_weight="2.5"
|
||
|
|
android:id="@+id/amt2"
|
||
|
|
android:visibility="gone"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:gravity="center">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:gravity="center"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:fontFamily="@font/popins_semibold"
|
||
|
|
android:text="₹ 40"
|
||
|
|
android:textAlignment="center"
|
||
|
|
android:textColor="@color/black"
|
||
|
|
android:textSize="13sp"/>
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:layout_weight="1.5"
|
||
|
|
android:id="@+id/editprod2"
|
||
|
|
android:visibility="gone"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:gravity="center">
|
||
|
|
|
||
|
|
<ImageView
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:backgroundTint="@color/selectedGreen"
|
||
|
|
android:background="@drawable/edit" />
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:layout_weight="1.5"
|
||
|
|
android:visibility="gone"
|
||
|
|
android:id="@+id/deleteProd2"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:gravity="center">
|
||
|
|
|
||
|
|
<ImageView
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:background="@drawable/delete_vec" />
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:gravity="center"
|
||
|
|
android:layout_marginTop="7dp"
|
||
|
|
android:layout_marginHorizontal="6dp"
|
||
|
|
android:orientation="horizontal">
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_weight="1.7"
|
||
|
|
android:id="@+id/sl_No1"
|
||
|
|
android:visibility="gone"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:gravity="center">
|
||
|
|
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
|
||
|
|
android:fontFamily="@font/popins_semibold"
|
||
|
|
android:id="@+id/slNo"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:text="2"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:gravity="center"
|
||
|
|
android:textAlignment="center"
|
||
|
|
android:textColor="@color/black"
|
||
|
|
android:textSize="13sp" />
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_weight="5"
|
||
|
|
android:id="@+id/itemname1"
|
||
|
|
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:gravity="center">
|
||
|
|
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:fontFamily="@font/popins_semibold"
|
||
|
|
android:layout_marginLeft="@dimen/dp_5"
|
||
|
|
android:id="@+id/second"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:text="Dairy Milk"
|
||
|
|
android:gravity="center"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:textColor="@color/black"
|
||
|
|
android:textSize="13sp" />
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_weight="1.5"
|
||
|
|
android:id="@+id/mrp1"
|
||
|
|
android:visibility="gone"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:gravity="center">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:fontFamily="@font/popins_semibold"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:id="@+id/mrp"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:text="60"
|
||
|
|
android:textColor="@color/black"
|
||
|
|
android:textSize="13sp"
|
||
|
|
android:gravity="center"
|
||
|
|
/>
|
||
|
|
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_weight="1"
|
||
|
|
android:visibility="gone"
|
||
|
|
android:id="@+id/discount1"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:gravity="center">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:fontFamily="@font/popins_semibold"
|
||
|
|
android:id="@+id/discount"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:text="-"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:gravity="center"
|
||
|
|
android:textAlignment="center"
|
||
|
|
android:textColor="@color/black"
|
||
|
|
android:textSize="13sp"/>
|
||
|
|
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_weight="2.5"
|
||
|
|
android:id="@+id/qty1"
|
||
|
|
android:visibility="gone"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:gravity="center">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:fontFamily="@font/popins_semibold"
|
||
|
|
android:id="@+id/quantity"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:layout_weight="2"
|
||
|
|
android:text="1"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:gravity="center"
|
||
|
|
android:textAlignment="center"
|
||
|
|
android:textColor="@color/black"
|
||
|
|
android:textSize="13sp" />
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_weight="2"
|
||
|
|
android:id="@+id/rate1"
|
||
|
|
android:visibility="gone"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:gravity="center">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:fontFamily="@font/popins_semibold"
|
||
|
|
android:id="@+id/rate"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:text="-"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:gravity="center"
|
||
|
|
android:textAlignment="center"
|
||
|
|
android:textColor="@color/black"
|
||
|
|
android:textSize="13sp" />
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_weight="2.5"
|
||
|
|
android:id="@+id/amt1"
|
||
|
|
android:visibility="gone"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:gravity="center">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:gravity="center"
|
||
|
|
android:id="@+id/price"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:fontFamily="@font/popins_semibold"
|
||
|
|
android:text="₹60"
|
||
|
|
android:textAlignment="center"
|
||
|
|
android:textColor="@color/black"
|
||
|
|
android:textSize="13sp"/>
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:layout_weight="1.5"
|
||
|
|
android:id="@+id/editprod"
|
||
|
|
android:visibility="gone"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:gravity="center">
|
||
|
|
|
||
|
|
<ImageView
|
||
|
|
android:id="@+id/edit2"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:backgroundTint="@color/selectedGreen"
|
||
|
|
android:background="@drawable/edit" />
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:layout_weight="1.5"
|
||
|
|
android:visibility="gone"
|
||
|
|
android:id="@+id/deleteProd"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:gravity="center">
|
||
|
|
|
||
|
|
<ImageView
|
||
|
|
android:id="@+id/delete"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:background="@drawable/delete_vec" />
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|