90 lines
3.3 KiB
XML
90 lines
3.3 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_marginTop="10dp"
|
|
android:background="@drawable/redborder_payment"
|
|
android:layout_marginHorizontal="15dp"
|
|
android:layout_height="match_parent">
|
|
<androidx.core.widget.NestedScrollView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginHorizontal="10dp"
|
|
android:paddingVertical="10dp"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="Set As Default"
|
|
android:layout_marginHorizontal="5dp"
|
|
android:textAllCaps="true"
|
|
android:fontFamily="@font/popins_itallic"
|
|
android:textSize="17dp"
|
|
android:textStyle="bold"
|
|
android:textColor="@color/black">
|
|
</TextView>
|
|
|
|
|
|
<LinearLayout
|
|
android:id="@+id/gatewayrecycle"
|
|
android:layout_marginTop="5dp"
|
|
android:layout_marginHorizontal="8dp"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:visibility="gone">
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/recyclerpayments"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content">
|
|
</androidx.recyclerview.widget.RecyclerView>
|
|
|
|
</LinearLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/paymentoption"
|
|
android:visibility="gone"
|
|
android:layout_marginTop="5dp"
|
|
android:layout_marginRight="25dp"
|
|
android:layout_marginStart="3dp"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text=" Please Select a UPI Payment Option : "
|
|
android:fontFamily="@font/popins_itallic"
|
|
android:textSize="16dp"
|
|
android:textStyle="bold"
|
|
android:textColor="@color/black">>
|
|
</TextView>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/paymentoptionrec"
|
|
android:layout_marginTop="5dp"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginHorizontal="8dp"
|
|
android:orientation="horizontal"
|
|
android:visibility="gone">
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/paymentmodedetails"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content">
|
|
</androidx.recyclerview.widget.RecyclerView>
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
</LinearLayout>
|
|
</androidx.core.widget.NestedScrollView>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|