58 lines
2.2 KiB
XML
58 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:orientation="vertical">
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_marginHorizontal="@dimen/_20dp"
|
||
|
|
android:layout_marginTop="5dp"
|
||
|
|
android:orientation="horizontal"
|
||
|
|
android:weightSum="4">
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/slno"
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_weight="1"
|
||
|
|
android:text="SL.NO"
|
||
|
|
android:fontFamily="@font/poppins_medium"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:padding="10dp"
|
||
|
|
android:textColor="@color/black"
|
||
|
|
android:gravity="center"/>
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/IMEINO"
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_weight="1"
|
||
|
|
android:text="IMEI Number"
|
||
|
|
android:fontFamily="@font/poppins_medium"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:padding="10dp"
|
||
|
|
android:textColor="@color/black"
|
||
|
|
android:gravity="center"/>
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/Employeename"
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_weight="1"
|
||
|
|
android:text="Employee Name"
|
||
|
|
android:fontFamily="@font/poppins_medium"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:padding="10dp"
|
||
|
|
android:textColor="@color/black"
|
||
|
|
android:gravity="center"/>
|
||
|
|
<ImageView
|
||
|
|
android:id="@+id/action"
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_weight="1"
|
||
|
|
android:src="@drawable/baseline_delete_24"
|
||
|
|
android:fontFamily="@font/poppins_medium"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:padding="10dp"
|
||
|
|
android:textColor="@color/black"
|
||
|
|
android:gravity="center"/>
|
||
|
|
</LinearLayout>
|
||
|
|
</LinearLayout>
|