53 lines
1.7 KiB
XML
53 lines
1.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">
|
|
|
|
|
|
<LinearLayout
|
|
android:layout_marginVertical="5dp"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:weightSum="4"
|
|
android:layout_marginHorizontal="15dp"
|
|
android:background="@color/white"
|
|
android:paddingVertical="5dp">
|
|
|
|
<TextView
|
|
android:id="@+id/number1_id"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:hint="1"
|
|
android:padding="10dp"
|
|
android:gravity="center"/>
|
|
<TextView
|
|
android:id="@+id/chicken_id"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:hint="Customer name"
|
|
android:padding="10dp"
|
|
android:gravity="center"/>
|
|
<TextView
|
|
android:id="@+id/number10_id"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:hint="Organization Name"
|
|
android:padding="10dp"
|
|
android:gravity="center"/>
|
|
<TextView
|
|
android:id="@+id/number200_id"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:padding="10dp"
|
|
android:text="Branch Name"
|
|
android:gravity="center"/>
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
</LinearLayout> |