270 lines
9.4 KiB
XML
270 lines
9.4 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="match_parent"
|
||
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||
|
|
xmlns:tools="http://schemas.android.com/tools"
|
||
|
|
android:background="#EBEDEF"
|
||
|
|
android:orientation="vertical">
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:background="@color/white"
|
||
|
|
android:orientation="horizontal"
|
||
|
|
android:weightSum="2.3">
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:layout_marginLeft="@dimen/dp_5"
|
||
|
|
android:layout_weight="0.1">
|
||
|
|
|
||
|
|
<androidx.appcompat.widget.Toolbar
|
||
|
|
android:id="@+id/tb"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:background="@color/white"
|
||
|
|
app:navigationIcon="?attr/homeAsUpIndicator"
|
||
|
|
app:titleTextColor="#050505"/>
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_marginLeft="10dp"
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:layout_weight="0.8">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/ToolTextT"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:fontFamily="@font/poppins_medium"
|
||
|
|
android:textStyle="bold"
|
||
|
|
android:text="UPI Master"
|
||
|
|
android:textColor="@color/black"
|
||
|
|
android:textSize="@dimen/sp_18" />
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
<LinearLayout
|
||
|
|
android:gravity="center"
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:layout_weight="1.2"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:layout_marginRight="5dp"
|
||
|
|
android:orientation="horizontal">
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:layout_weight="1">
|
||
|
|
|
||
|
|
<EditText
|
||
|
|
android:id="@+id/eFilterT"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="35dp"
|
||
|
|
|
||
|
|
android:background="@drawable/bglayout"
|
||
|
|
android:gravity="center"
|
||
|
|
android:hint="Name *"
|
||
|
|
android:padding="@dimen/dp_10"
|
||
|
|
android:textAllCaps="false"
|
||
|
|
android:textColor="#43730C"
|
||
|
|
android:textColorHint="#9F9B9B"
|
||
|
|
android:textSize="@dimen/dp_12"
|
||
|
|
android:visibility="gone" />
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:layout_weight="0.2"
|
||
|
|
android:gravity="right"
|
||
|
|
android:orientation="horizontal">
|
||
|
|
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:id="@+id/closefilterT"
|
||
|
|
android:visibility="gone"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:padding="8dp"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:orientation="vertical">
|
||
|
|
|
||
|
|
<ImageView
|
||
|
|
android:scaleType="fitXY"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
app:srcCompat="@drawable/close_1" />
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
<ImageView
|
||
|
|
android:id="@+id/bFilterT"
|
||
|
|
android:layout_width="35dp"
|
||
|
|
android:layout_height="25dp"
|
||
|
|
android:visibility="visible"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:src="@drawable/search"
|
||
|
|
android:textAllCaps="false"
|
||
|
|
android:textColor="#fff" />
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:id="@+id/fab"
|
||
|
|
android:layout_marginTop="@dimen/dp_10"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_gravity="right"
|
||
|
|
android:gravity="center"
|
||
|
|
android:layout_marginRight="15dp"
|
||
|
|
android:layout_marginBottom="10dp"
|
||
|
|
android:background="@drawable/btn_holds"
|
||
|
|
android:backgroundTint="#FF8E1E78">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:text="Add New"
|
||
|
|
android:fontFamily="@font/popins_medimum"
|
||
|
|
android:textColor="@color/white"
|
||
|
|
android:gravity="center"
|
||
|
|
android:layout_marginLeft="15dp"
|
||
|
|
android:drawablePadding="20dp"
|
||
|
|
android:drawableTint="@color/white"
|
||
|
|
android:drawableRight="@drawable/add_24"/>
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:orientation="horizontal"
|
||
|
|
android:weightSum="5.5"
|
||
|
|
android:layout_marginHorizontal="15dp"
|
||
|
|
android:background="#E8ECF1">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:gravity="center"
|
||
|
|
android:layout_weight="0.5"
|
||
|
|
android:fontFamily="@font/poppins_medium"
|
||
|
|
android:text="SL.NO"
|
||
|
|
android:padding="10dp"
|
||
|
|
android:textColor="@color/black" />
|
||
|
|
<TextView
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:gravity="center"
|
||
|
|
android:layout_weight="1"
|
||
|
|
android:fontFamily="@font/poppins_medium"
|
||
|
|
android:text="NAME"
|
||
|
|
android:padding="10dp"
|
||
|
|
android:textColor="@color/black" />
|
||
|
|
<TextView
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_weight="1.2"
|
||
|
|
android:text="MOBILE NO"
|
||
|
|
android:fontFamily="@font/poppins_medium"
|
||
|
|
android:gravity="center"
|
||
|
|
android:textColor="@color/black"
|
||
|
|
android:padding="10dp"/>
|
||
|
|
<TextView
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:gravity="center"
|
||
|
|
android:layout_weight="1"
|
||
|
|
android:fontFamily="@font/poppins_medium"
|
||
|
|
android:padding="10dp"
|
||
|
|
android:text="UPI ID"
|
||
|
|
android:textColor="@color/black" />
|
||
|
|
<TextView
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:gravity="center"
|
||
|
|
android:layout_weight="0.8"
|
||
|
|
android:fontFamily="@font/poppins_medium"
|
||
|
|
android:padding="10dp"
|
||
|
|
android:text="UPI NAME"
|
||
|
|
android:textColor="@color/black" />
|
||
|
|
<TextView
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:gravity="center"
|
||
|
|
android:layout_weight="0.8"
|
||
|
|
android:fontFamily="@font/poppins_medium"
|
||
|
|
android:padding="10dp"
|
||
|
|
android:text="ACTION"
|
||
|
|
android:textColor="@color/black"/>
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:gravity="center"
|
||
|
|
android:layout_marginTop="10dp"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:background="@color/white"
|
||
|
|
android:orientation="vertical">
|
||
|
|
|
||
|
|
<ImageView
|
||
|
|
android:id="@+id/noData"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_marginVertical="30dp"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:src="@drawable/nodatafound"
|
||
|
|
android:visibility="gone">
|
||
|
|
</ImageView>
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
<RelativeLayout
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content">
|
||
|
|
|
||
|
|
<androidx.recyclerview.widget.RecyclerView
|
||
|
|
android:id="@+id/recyclerview"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="390dp"
|
||
|
|
android:orientation="vertical"
|
||
|
|
android:layout_marginTop="10dp">
|
||
|
|
|
||
|
|
</androidx.recyclerview.widget.RecyclerView>
|
||
|
|
|
||
|
|
|
||
|
|
</RelativeLayout>
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_marginHorizontal="25dp"
|
||
|
|
android:layout_marginBottom="@dimen/dp_25"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:foregroundGravity="center"
|
||
|
|
android:id="@+id/paginationLayout"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:orientation="horizontal"
|
||
|
|
android:gravity="center"
|
||
|
|
android:padding="8dp">
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
</LinearLayout>
|