87 lines
3.1 KiB
XML
87 lines
3.1 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:layout_marginTop="@dimen/dp_5"
|
||
|
|
android:padding="@dimen/dp_3"
|
||
|
|
android:background="@color/white"
|
||
|
|
android:orientation="horizontal"
|
||
|
|
android:weightSum="5">
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/sino"
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:text="Si.No"
|
||
|
|
android:layout_weight="0.5"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:gravity="center"
|
||
|
|
android:fontFamily="@font/inter_600"
|
||
|
|
android:textAllCaps="true">
|
||
|
|
</TextView>
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/suppliername"
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:text="Supplier Name"
|
||
|
|
android:layout_weight="1"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:gravity="center"
|
||
|
|
android:fontFamily="@font/inter_600"
|
||
|
|
android:textAllCaps="true">
|
||
|
|
</TextView>
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/prodname"
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:text="Product Name"
|
||
|
|
android:layout_weight="1.3"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:gravity="center"
|
||
|
|
android:fontFamily="@font/inter_600"
|
||
|
|
android:textAllCaps="true">
|
||
|
|
</TextView>
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/createdate"
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:text="Created Date"
|
||
|
|
android:layout_weight="1.2"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:gravity="center"
|
||
|
|
android:fontFamily="@font/inter_600"
|
||
|
|
android:textAllCaps="true">
|
||
|
|
</TextView>
|
||
|
|
<ImageView
|
||
|
|
android:id="@+id/deleted"
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_weight="1"
|
||
|
|
android:src="@drawable/sales_screen_mobile_delete"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:gravity="center">
|
||
|
|
</ImageView>
|
||
|
|
<LinearLayout
|
||
|
|
android:visibility="gone"
|
||
|
|
android:id="@+id/refereshbtn"
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_weight="1"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:gravity="center">
|
||
|
|
|
||
|
|
<ImageView
|
||
|
|
android:layout_width="25dp"
|
||
|
|
android:layout_marginTop="3dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:src="@drawable/noun_refresh_1241395">
|
||
|
|
</ImageView>
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
</LinearLayout>
|