POZO_Retail/app/build/intermediates/merged-not-compiled-resources/release/layout/upiverifyotp.xml

122 lines
4.2 KiB
XML
Raw Permalink Normal View History

2025-08-26 13:45:32 +05:30
<?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="wrap_content"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:padding="16dp"
android:background="@android:color/white">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="end"
android:layout_marginHorizontal="@dimen/dp_10"
android:layout_gravity="end"
android:orientation="horizontal">
<ImageView
android:id="@+id/edit"
android:padding="@dimen/dp_5"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/dp_3"
android:layout_marginLeft="@dimen/dp_5"
android:layout_gravity="center_vertical"
app:srcCompat="@drawable/close_1"/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_marginStart="10dp"
android:layout_marginTop="10dp"
android:layout_height="wrap_content">
<TextView
android:layout_width="match_parent"
android:gravity="center"
android:layout_height="wrap_content"
android:text="Enter OTP"
android:textStyle="bold"
android:textSize="16dp" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_marginTop="2dp"
android:layout_marginBottom="20dp"
android:layout_height="wrap_content"
android:orientation="vertical">
<com.chaos.view.PinView
android:id="@+id/otp"
app:itemCount="4"
app:itemWidth="50dp"
app:itemHeight="50dp"
android:layout_marginStart="-1dp"
android:layout_marginTop="@dimen/dp_10"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:itemBackground="@color/white"
android:layout_gravity="center"
android:inputType="number"
android:cursorVisible="true"
app:hideLineWhenFilled="false"
app:itemRadius="10dp"
style="@style/PinWidget.PinView"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintTop_toTopOf="parent">
</com.chaos.view.PinView>
<LinearLayout
android:layout_width="match_parent"
android:layout_gravity="center"
android:gravity="center"
android:layout_marginTop="10dp"
android:layout_height="wrap_content"
android:weightSum="1">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Resend OTP in"
android:textSize="15dp"
android:textStyle="bold"
android:gravity="end"/>
<TextView
android:id="@+id/resend"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=""
android:textStyle="bold"
android:textColor="@color/red"
android:textSize="14dp"
android:paddingLeft="5dp"/>
</LinearLayout>
<TextView
android:id="@+id/verifyOTP"
android:layout_width="100dp"
android:layout_height="50dp"
android:layout_gravity="center"
android:layout_marginLeft="62dp"
android:layout_marginTop="18.7dp"
android:layout_marginRight="62dp"
android:background="@drawable/blue_fill__rounded_color"
android:gravity="center"
android:paddingTop="14dp"
android:paddingBottom="14dp"
android:text="VERIFY OTP"
android:textColor="#ffffff"
android:textSize="12sp"
android:textStyle="bold"
android:visibility="gone" />
</LinearLayout>
</LinearLayout>