39 lines
1.4 KiB
XML
39 lines
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<TextView
|
|
android:id="@+id/titleText"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentTop="true"
|
|
android:gravity="center"
|
|
android:text="Upload Pending List(Local data)"
|
|
android:layout_marginTop="5dp"
|
|
android:textSize="21sp"
|
|
android:textColor="@color/black"
|
|
/>
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/rv_order_offline"
|
|
android:visibility="gone"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@+id/titleText"
|
|
android:layout_alignParentStart="true"
|
|
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
|
|
tools:listitem="@layout/offline_user_list_view" />
|
|
|
|
<TextView
|
|
android:id="@+id/noDataText"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerInParent="true"
|
|
android:text="All up-to-date"
|
|
android:textSize="22sp"
|
|
android:textColor="@color/black"
|
|
/>
|
|
|
|
</RelativeLayout> |