94 lines
3.2 KiB
XML
94 lines
3.2 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_marginVertical="5dp"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:orientation="horizontal"
|
||
|
|
android:weightSum="6.5"
|
||
|
|
android:layout_marginHorizontal="15dp"
|
||
|
|
android:fontFamily="@font/poppins_medium"
|
||
|
|
android:background="@color/white"
|
||
|
|
android:paddingVertical="5dp">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/slNo"
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_weight="0.5"
|
||
|
|
android:hint="SL.No"
|
||
|
|
android:fontFamily="@font/poppins_medium"
|
||
|
|
android:padding="10dp"
|
||
|
|
android:gravity="center"/>
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/ComboName"
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_weight="1"
|
||
|
|
android:hint="Combo Name"
|
||
|
|
android:fontFamily="@font/poppins_medium"
|
||
|
|
android:padding="10dp"
|
||
|
|
android:gravity="center"/>
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/productName"
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_weight="1.1"
|
||
|
|
android:fontFamily="@font/poppins_medium"
|
||
|
|
android:padding="10dp"
|
||
|
|
android:hint="Product Name"
|
||
|
|
android:gravity="center"/>
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/OfferPrice"
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_weight="1.1"
|
||
|
|
android:fontFamily="@font/poppins_medium"
|
||
|
|
android:hint="Offer price"
|
||
|
|
android:padding="10dp"
|
||
|
|
android:gravity="center"/>
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/Validatedate"
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_weight="2"
|
||
|
|
android:padding="10dp"
|
||
|
|
android:fontFamily="@font/poppins_medium"
|
||
|
|
android:text="Validate From"
|
||
|
|
android:gravity="center"/>
|
||
|
|
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_weight="0.8"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:orientation="horizontal"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:gravity="center">
|
||
|
|
<ImageView
|
||
|
|
android:id="@+id/edit"
|
||
|
|
android:layout_width="25dp"
|
||
|
|
android:layout_height="24dp"
|
||
|
|
android:src="@drawable/editicon"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:layout_marginHorizontal="5dp"/>
|
||
|
|
<ImageView
|
||
|
|
android:id="@+id/delete"
|
||
|
|
android:layout_width="24dp"
|
||
|
|
android:layout_height="24dp"
|
||
|
|
android:src="@drawable/active"
|
||
|
|
android:layout_marginHorizontal="5dp"/>
|
||
|
|
</LinearLayout>
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
</LinearLayout>
|