68 lines
2.1 KiB
XML
68 lines
2.1 KiB
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<LinearLayout
|
||
|
|
android:id="@+id/unPaidReOder"
|
||
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:orientation="horizontal"
|
||
|
|
android:visibility="visible"
|
||
|
|
android:showDividers="middle">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/tablename"
|
||
|
|
android:layout_width="120dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:gravity="start"
|
||
|
|
android:textSize="15dp"
|
||
|
|
android:hint="Apple Juice"
|
||
|
|
android:fontFamily="@font/inter_500"
|
||
|
|
android:textColor="@color/black"
|
||
|
|
android:layout_marginStart="8dp"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:paddingVertical="8dp" />
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/orderid"
|
||
|
|
android:layout_width="100dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:gravity="center"
|
||
|
|
android:textSize="14dp"
|
||
|
|
android:hint="0"
|
||
|
|
android:singleLine="true"
|
||
|
|
android:fontFamily="@font/inter_500"
|
||
|
|
android:textColor="@color/black"
|
||
|
|
android:layout_marginStart="8dp"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:paddingVertical="8dp" />
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/items"
|
||
|
|
android:layout_width="100dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:gravity="center"
|
||
|
|
android:textSize="14dp"
|
||
|
|
android:hint="0"
|
||
|
|
android:fontFamily="@font/inter_500"
|
||
|
|
android:textColor="@color/black"
|
||
|
|
android:layout_marginStart="8dp"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:paddingVertical="8dp" />
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/amount"
|
||
|
|
android:layout_width="120dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:gravity="center"
|
||
|
|
android:textSize="14dp"
|
||
|
|
android:hint="0"
|
||
|
|
android:maxLines="2"
|
||
|
|
android:fontFamily="@font/inter_500"
|
||
|
|
android:textColor="@color/black"
|
||
|
|
android:layout_marginStart="8dp"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:paddingVertical="8dp" />
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
</LinearLayout>
|