121 lines
3.7 KiB
XML
121 lines
3.7 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="@drawable/stroke_6dp_sales_screen"
|
|
android:orientation="horizontal"
|
|
android:weightSum="7">
|
|
|
|
<!-- Serial Number -->
|
|
<LinearLayout
|
|
android:layout_width="0dp"
|
|
android:layout_height="35dp"
|
|
android:layout_weight="1"
|
|
android:gravity="center">
|
|
|
|
<TextView
|
|
android:id="@+id/tvSlNo"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:gravity="center"
|
|
android:text="1"
|
|
android:textSize="14sp"
|
|
|
|
android:textColor="@color/black"
|
|
android:fontFamily="@font/inter_500"/>
|
|
</LinearLayout>
|
|
|
|
<View
|
|
android:layout_width="1dp"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/primary_grey_BEBEBE"/>
|
|
|
|
<!-- Name -->
|
|
<LinearLayout
|
|
android:layout_width="0dp"
|
|
android:layout_height="35dp"
|
|
android:layout_weight="2"
|
|
android:gravity="center">
|
|
|
|
<TextView
|
|
android:id="@+id/tvName"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:gravity="center"
|
|
android:text="John Doe"
|
|
android:textSize="14sp"
|
|
android:textColor="@color/black"
|
|
android:fontFamily="@font/inter_500"/>
|
|
</LinearLayout>
|
|
|
|
<View
|
|
android:layout_width="1dp"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/primary_grey_BEBEBE"/>
|
|
|
|
<!-- Tax Percentage -->
|
|
<LinearLayout
|
|
android:layout_width="0dp"
|
|
android:layout_height="35dp"
|
|
android:layout_weight="1"
|
|
android:gravity="center">
|
|
|
|
<TextView
|
|
android:id="@+id/tvTaxPercentage"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:gravity="center"
|
|
android:text="5%"
|
|
android:textSize="14sp"
|
|
android:textColor="@color/black"
|
|
android:fontFamily="@font/inter_500"/>
|
|
</LinearLayout>
|
|
|
|
<View
|
|
android:layout_width="1dp"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/primary_grey_BEBEBE"/>
|
|
|
|
<!-- Effective From -->
|
|
<LinearLayout
|
|
android:layout_width="0dp"
|
|
android:layout_height="35dp"
|
|
android:layout_weight="2"
|
|
android:gravity="center">
|
|
|
|
<TextView
|
|
android:id="@+id/tvEffectiveFrom"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:gravity="center"
|
|
android:text="01-01-2024"
|
|
android:textSize="14sp"
|
|
android:textColor="@color/black"
|
|
android:fontFamily="@font/inter_500"/>
|
|
</LinearLayout>
|
|
|
|
<View
|
|
android:layout_width="1dp"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/primary_grey_BEBEBE"/>
|
|
|
|
<!-- Reference Number -->
|
|
<LinearLayout
|
|
android:layout_width="0dp"
|
|
android:layout_height="35dp"
|
|
android:layout_weight="1"
|
|
android:gravity="center">
|
|
|
|
<TextView
|
|
android:id="@+id/tvRefNo"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:gravity="center"
|
|
android:text="12345"
|
|
android:textSize="14sp"
|
|
android:textColor="@color/black"
|
|
android:fontFamily="@font/inter_500"/>
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|