70 lines
2.2 KiB
XML
70 lines
2.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:visibility="visible"
|
||
|
|
android:orientation="horizontal">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/serialNo"
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:layout_weight="1"
|
||
|
|
android:fontFamily="@font/poppins_medium"
|
||
|
|
android:gravity="center"
|
||
|
|
android:padding="7dp"
|
||
|
|
android:hint="1"
|
||
|
|
android:textColor="@color/black"
|
||
|
|
android:textSize="14dp" />
|
||
|
|
|
||
|
|
<View
|
||
|
|
android:layout_width="2dp"
|
||
|
|
android:layout_height="25dp"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:layout_marginLeft="5dp"
|
||
|
|
android:background="@drawable/nav_border2"
|
||
|
|
android:backgroundTint="@color/white" />
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/productName"
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_weight="2"
|
||
|
|
android:gravity="start"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:padding="7dp"
|
||
|
|
android:layout_marginStart="@dimen/dp_10"
|
||
|
|
android:fontFamily="@font/poppins_medium"
|
||
|
|
android:textSize="14dp"
|
||
|
|
android:hint="Product Name"
|
||
|
|
android:textColor="@color/black" />
|
||
|
|
<View
|
||
|
|
android:layout_width="2dp"
|
||
|
|
android:layout_height="25dp"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:layout_marginLeft="5dp"
|
||
|
|
android:background="@drawable/nav_border2"
|
||
|
|
android:backgroundTint="@color/white" />
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_weight="1"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:padding="7dp"
|
||
|
|
android:gravity="center">
|
||
|
|
|
||
|
|
<CheckBox
|
||
|
|
android:id="@+id/checkboxestimate"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:gravity="center"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:textColor="@color/black" />
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
|
||
|
|
</LinearLayout>
|