98 lines
3.6 KiB
XML
98 lines
3.6 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="horizontal"
|
||
|
|
android:layout_marginHorizontal="@dimen/dimen_10dp"
|
||
|
|
android:layout_marginTop="10dp"
|
||
|
|
android:weightSum="5">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/slno"
|
||
|
|
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:id="@+id/productname"
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_weight="1"
|
||
|
|
android:gravity="start"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:padding="10dp"
|
||
|
|
android:fontFamily="@font/popins_medimum"
|
||
|
|
android:text="Product Name"
|
||
|
|
android:textColor="@color/black"/>
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/variantname"
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_weight="1"
|
||
|
|
android:gravity="center"
|
||
|
|
android:layout_gravity="start"
|
||
|
|
android:padding="10dp"
|
||
|
|
android:fontFamily="@font/popins_medimum"
|
||
|
|
android:text="Variant Name"
|
||
|
|
android:textColor="@color/black"/>
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/qty"
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_weight="1"
|
||
|
|
android:gravity="end"
|
||
|
|
android:padding="10dp"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:fontFamily="@font/popins_medimum"
|
||
|
|
android:text="Quantity"
|
||
|
|
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:fontFamily="@font/popins_medimum"-->
|
||
|
|
<!-- android:padding="10dp"-->
|
||
|
|
<!-- android:text="Action"-->
|
||
|
|
<!-- android:textColor="@color/black" />-->
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_weight="1"
|
||
|
|
android:gravity="center"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:orientation="horizontal">
|
||
|
|
<ImageView
|
||
|
|
android:id="@+id/edit_icon"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_marginRight="@dimen/dp_10"
|
||
|
|
android:src="@drawable/edit">
|
||
|
|
</ImageView>
|
||
|
|
<ImageView
|
||
|
|
android:id="@+id/Action"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:src="@drawable/baseline_delete_24" />
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
</LinearLayout>
|