213 lines
8.7 KiB
XML
213 lines
8.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
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"
|
|
android:background="#E8ECF1"
|
|
>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginHorizontal="25dp"
|
|
android:layout_marginTop="38dp"
|
|
android:layout_marginBottom="38dp"
|
|
android:background="@color/white"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
<androidx.appcompat.widget.Toolbar
|
|
android:id="@+id/toolbar"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
app:navigationIcon="@drawable/back"
|
|
app:title="UPI Details"
|
|
android:fontFamily="@font/poppins_medium"
|
|
app:titleTextColor="@color/black" />
|
|
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="20dp"
|
|
android:orientation="horizontal"
|
|
android:weightSum="2">
|
|
<LinearLayout
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="5dp"
|
|
android:layout_marginLeft="10sp"
|
|
android:layout_marginRight="10sp"
|
|
android:layout_weight="1"
|
|
android:orientation="vertical"
|
|
android:visibility="visible">
|
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
|
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="1"
|
|
android:hint="Name*"
|
|
app:boxStrokeColor="#00BFFF"
|
|
app:boxStrokeWidth="1dp"
|
|
app:hintAnimationEnabled="true"
|
|
app:hintTextColor="#00BFFF">
|
|
|
|
<com.google.android.material.textfield.TextInputEditText
|
|
android:id="@+id/addname"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:inputType="text"
|
|
android:maxLines="1"
|
|
android:textColorHint="@color/black"
|
|
android:textSize="15sp" />
|
|
|
|
</com.google.android.material.textfield.TextInputLayout>
|
|
</LinearLayout>
|
|
<LinearLayout
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="10sp"
|
|
android:layout_marginTop="5sp"
|
|
android:layout_marginRight="10sp"
|
|
android:layout_weight="1"
|
|
android:orientation="vertical"
|
|
android:visibility="visible">
|
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
|
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="1"
|
|
android:hint="Mobile No*"
|
|
app:boxStrokeColor="#00BFFF"
|
|
app:boxStrokeWidth="1dp"
|
|
app:hintAnimationEnabled="true"
|
|
app:hintTextColor="#00BFFF">
|
|
<com.google.android.material.textfield.TextInputEditText
|
|
android:id="@+id/mobileNo"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:inputType="number"
|
|
android:maxLines="1"
|
|
android:maxLength="10"
|
|
android:textColorHint="@color/black"
|
|
android:textSize="15sp" />
|
|
|
|
</com.google.android.material.textfield.TextInputLayout>
|
|
</LinearLayout>
|
|
|
|
|
|
</LinearLayout>
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:weightSum="2">
|
|
|
|
<LinearLayout
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="10sp"
|
|
android:layout_marginTop="5dp"
|
|
android:layout_marginRight="10sp"
|
|
android:layout_weight="1"
|
|
android:orientation="vertical"
|
|
android:visibility="visible">
|
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
|
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="1"
|
|
android:hint="UPI id*"
|
|
app:boxStrokeColor="#00BFFF"
|
|
app:boxStrokeWidth="1dp"
|
|
app:hintAnimationEnabled="true"
|
|
app:hintTextColor="#00BFFF">
|
|
|
|
<com.google.android.material.textfield.TextInputEditText
|
|
android:id="@+id/addupi"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:inputType="text"
|
|
android:maxLines="1"
|
|
android:paddingLeft="13sp"
|
|
android:paddingRight="13sp"
|
|
android:paddingBottom="13sp"
|
|
android:textColorHint="@color/black"
|
|
android:textSize="15sp" />
|
|
|
|
</com.google.android.material.textfield.TextInputLayout>
|
|
</LinearLayout>
|
|
<LinearLayout
|
|
|
|
android:layout_marginHorizontal="10dp"
|
|
android:layout_weight="1"
|
|
android:background="@drawable/border"
|
|
android:visibility="visible"
|
|
android:layout_marginTop="10sp"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginRight="10sp"
|
|
android:layout_marginLeft="10sp"
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<com.jaredrummler.materialspinner.MaterialSpinner
|
|
android:id="@+id/upispinner"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:layout_margin="1sp"
|
|
android:background="@drawable/border"
|
|
android:drawablePadding="5dp"
|
|
android:hint="Mode*"
|
|
android:textSize="16dp"
|
|
app:ms_dropdown_height="wrap_content"
|
|
app:ms_dropdown_max_height="350sp"
|
|
app:ms_hint="Select Category Type"
|
|
/>
|
|
|
|
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_marginBottom="55dp"
|
|
android:layout_marginTop="25dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="bottom"
|
|
android:layout_marginRight="25dp"
|
|
android:gravity="end">
|
|
|
|
<Button
|
|
android:id="@+id/submit"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:background="@drawable/submit_btn"
|
|
android:fontFamily="@font/popins_regular"
|
|
android:textColor="@color/white"
|
|
android:padding="2dp"
|
|
android:drawableRight="@drawable/submit_vec"
|
|
android:text="SUBMIT">
|
|
</Button>
|
|
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|