Browse Source

Verification page fixes

master
preyearegmi 6 years ago
parent
commit
97c5bb4e05
  1. 2
      app/src/main/res/drawable-xxhdpi/circular_empty_bg.xml
  2. 2
      app/src/main/res/drawable-xxhdpi/circular_invalid_bg.xml
  3. 2
      app/src/main/res/drawable-xxhdpi/circular_valid_bg.xml
  4. 94
      app/src/main/res/layout/activity_send_money_v2.xml
  5. 2
      app/src/main/res/layout/fragment_amount_detail_send_money_v2.xml
  6. 2
      app/src/main/res/layout/fragment_payout_mode_send_money_v2.xml
  7. 188
      app/src/main/res/layout/fragment_verification_send_money_v2.xml

2
app/src/main/res/drawable-xxhdpi/circular_empty_bg.xml

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval">
<stroke android:width="1dp" android:color="@color/dark_background_gray" />
<stroke android:width="1dp" android:color="@color/gray" />
<size android:width="30dp" android:height="30dp"/>
</shape>

2
app/src/main/res/drawable-xxhdpi/circular_invalid_bg.xml

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval">
<stroke android:width="1dp" android:color="@color/dark_background_gray" />
<stroke android:width="1dp" android:color="@color/gray" />
<solid android:width="1dp" android:color="@color/colorPrimary" />
<size android:width="30dp" android:height="30dp"/>
</shape>

2
app/src/main/res/drawable-xxhdpi/circular_valid_bg.xml

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval">
<stroke android:width="1dp" android:color="@color/dark_background_gray" />
<stroke android:width="1dp" android:color="@color/gray" />
<solid android:width="1dp" android:color="@color/green" />
<size android:width="30dp" android:height="30dp"/>
</shape>

94
app/src/main/res/layout/activity_send_money_v2.xml

@ -3,59 +3,67 @@
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/send_money_bg_grey"
android:background="@color/background_gray"
tools:context=".sendmoneyV2.view.SendMoneyV2Activity"
android:orientation="vertical">
<include layout="@layout/layout_sendmoney_toolbar" />
<LinearLayout
android:paddingTop="30dp"
android:layout_gravity="center_horizontal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal">
<com.gmeremit.online.gmeremittance_native.customwidgets.GmeTextView
android:id="@+id/page1TxtView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@color/dark_gray"
android:text="1"
android:textSize="12sp"
android:background="@drawable/circular_empty_bg"
android:gravity="center"/>
<View
android:layout_width="70dp"
android:layout_height="3dp"
android:background="@color/dark_background_gray"
android:layout_gravity="center_vertical"/>
<com.gmeremit.online.gmeremittance_native.customwidgets.GmeTextView
android:id="@+id/page2TxtView"
<LinearLayout
android:layout_marginTop="5dp"
android:layout_marginBottom="5dp"
android:paddingStart="5dp"
android:paddingEnd="5dp"
android:background="@drawable/ic_rounded_white"
android:paddingTop="15dp"
android:paddingBottom="15dp"
android:layout_gravity="center_horizontal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@color/white"
android:text="2"
android:textSize="12sp"
android:orientation="horizontal">
<com.gmeremit.online.gmeremittance_native.customwidgets.GmeTextView
android:id="@+id/page1TxtView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@color/dark_gray"
android:text="1"
android:textSize="12sp"
android:background="@drawable/circular_empty_bg"
android:gravity="center"/>
<View
android:layout_width="70dp"
android:layout_height="3dp"
android:background="@color/gray"
android:layout_gravity="center_vertical"/>
<com.gmeremit.online.gmeremittance_native.customwidgets.GmeTextView
android:id="@+id/page2TxtView"
android:background="@drawable/circular_invalid_bg"
android:gravity="center"/>
<View
android:layout_width="70dp"
android:layout_height="3dp"
android:background="@color/dark_background_gray"
android:layout_gravity="center_vertical"/>
<com.gmeremit.online.gmeremittance_native.customwidgets.GmeTextView
android:id="@+id/page3TxtView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@color/dark_background_gray"
android:textSize="12sp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@color/white"
android:text="2"
android:textSize="12sp"
android:background="@drawable/circular_invalid_bg"
android:gravity="center"/>
<View
android:layout_width="70dp"
android:layout_height="3dp"
android:background="@color/gray"
android:layout_gravity="center_vertical"/>
<com.gmeremit.online.gmeremittance_native.customwidgets.GmeTextView
android:id="@+id/page3TxtView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@color/dark_background_gray"
android:textSize="12sp"
android:text="3"
android:background="@drawable/circular_valid_bg"
android:gravity="center"/>
android:text="3"
android:background="@drawable/circular_valid_bg"
android:gravity="center"/>
</LinearLayout>
</LinearLayout>
<FrameLayout
android:id="@+id/sendMoneyViewContainer"

2
app/src/main/res/layout/fragment_amount_detail_send_money_v2.xml

@ -4,7 +4,7 @@
xmlns:tools="http://schemas.android.com/tools"
android:layout_height="match_parent"
android:clickable="true"
android:background="@color/send_money_bg_grey"
android:background="@color/background_gray"
tools:context="com.gmeremit.online.gmeremittance_native.exchange_rate.view.ExchangeMethodV2Activity"
android:layout_width="match_parent">

2
app/src/main/res/layout/fragment_payout_mode_send_money_v2.xml

@ -2,7 +2,7 @@
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:clickable="true"
android:background="@color/send_money_bg_grey"
android:background="@color/background_gray"
android:layout_height="match_parent">
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"

188
app/src/main/res/layout/fragment_verification_send_money_v2.xml

@ -3,7 +3,7 @@
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/send_money_bg_grey"
android:background="@color/background_gray"
android:clickable="true"
android:focusable="true">
@ -17,171 +17,206 @@
android:paddingStart="20dp"
android:paddingTop="30dp">
<com.gmeremit.online.gmeremittance_native.customwidgets.GmeTextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:paddingTop="10dp"
android:text="Reciever Details"
android:textColor="@color/colorPrimary"
android:textSize="17sp" />
<LinearLayout
android:background="@drawable/ic_rounded_white"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:paddingEnd="10dp"
android:paddingLeft="10dp"
android:paddingRight="10dp"
android:paddingStart="10dp">
android:padding="10dp">
<com.gmeremit.online.gmeremittance_native.customwidgets.GmeTextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:gravity="center_vertical"
android:text="Reciever Details"
android:textColor="@color/colorPrimary"
android:textSize="17sp" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<com.gmeremit.online.gmeremittance_native.customwidgets.GmeTextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:paddingTop="10dp"
android:text="Full Name"
android:text="Full Name: "
android:textColor="@color/dark_gray"
android:textSize="13sp" />
<com.gmeremit.online.gmeremittance_native.customwidgets.GmeTextView
android:layout_width="match_parent"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:gravity="center_vertical"
android:text="Preyea R. Regmi"
android:textColor="@color/black"
android:textSize="13sp"
app:txtfontName="@string/semibold" />
</LinearLayout>
<com.gmeremit.online.gmeremittance_native.customwidgets.GmeTextView
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:orientation="horizontal">
<com.gmeremit.online.gmeremittance_native.customwidgets.GmeTextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:paddingTop="10dp"
android:text="Address"
android:text="Address: "
android:textColor="@color/dark_gray"
android:textSize="13sp" />
<com.gmeremit.online.gmeremittance_native.customwidgets.GmeTextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_width="0dp"
android:layout_weight="1" android:layout_height="wrap_content"
android:gravity="center_vertical"
android:text="Jorpati"
android:textColor="@color/black"
android:textSize="13sp"
app:txtfontName="@string/semibold" />
</LinearLayout>
<com.gmeremit.online.gmeremittance_native.customwidgets.GmeTextView
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:orientation="horizontal">
<com.gmeremit.online.gmeremittance_native.customwidgets.GmeTextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:paddingTop="10dp"
android:text="Country"
android:text="Country: "
android:textColor="@color/dark_gray"
android:textSize="13sp" />
<com.gmeremit.online.gmeremittance_native.customwidgets.GmeTextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_width="0dp"
android:layout_weight="1" android:layout_height="wrap_content"
android:gravity="center_vertical"
android:text="Nepal"
android:textColor="@color/black"
android:textSize="13sp"
app:txtfontName="@string/semibold" />
</LinearLayout>
<com.gmeremit.online.gmeremittance_native.customwidgets.GmeTextView
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:orientation="horizontal">
<com.gmeremit.online.gmeremittance_native.customwidgets.GmeTextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:paddingTop="10dp"
android:text="Mobile"
android:text="Mobile: "
android:textColor="@color/dark_gray"
android:textSize="13sp" />
<com.gmeremit.online.gmeremittance_native.customwidgets.GmeTextView
android:layout_width="match_parent"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:gravity="center_vertical"
android:text="+9779908018028"
android:textColor="@color/black"
android:textSize="13sp"
app:txtfontName="@string/semibold" />
</LinearLayout>
</LinearLayout>
<com.gmeremit.online.gmeremittance_native.customwidgets.GmeTextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:paddingTop="20dp"
android:text="Transaction Details"
android:textColor="@color/colorPrimary"
android:textSize="17sp" />
<LinearLayout
android:layout_marginTop="10dp"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:paddingEnd="10dp"
android:paddingLeft="10dp"
android:paddingRight="10dp"
android:paddingStart="10dp">
android:background="@drawable/ic_rounded_white"
android:padding="10dp">
<com.gmeremit.online.gmeremittance_native.customwidgets.GmeTextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:text="Transaction Details"
android:textColor="@color/colorPrimary"
android:textSize="17sp" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<com.gmeremit.online.gmeremittance_native.customwidgets.GmeTextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:paddingTop="10dp"
android:text="Payout Country"
android:text="Payout Country: "
android:textColor="@color/dark_gray"
android:textSize="13sp" />
<com.gmeremit.online.gmeremittance_native.customwidgets.GmeTextView
android:layout_width="match_parent"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:text="Nepal"
android:textColor="@color/black"
android:textSize="13sp"
app:txtfontName="@string/semibold" />
</LinearLayout>
<com.gmeremit.online.gmeremittance_native.customwidgets.GmeTextView
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<com.gmeremit.online.gmeremittance_native.customwidgets.GmeTextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:paddingTop="10dp"
android:text="Payout Mode"
android:text="Payout Mode: "
android:textColor="@color/dark_gray"
android:textSize="13sp" />
<com.gmeremit.online.gmeremittance_native.customwidgets.GmeTextView
android:layout_width="match_parent"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:text="CASH Payment"
android:textColor="@color/black"
android:textSize="13sp"
app:txtfontName="@string/semibold" />
</LinearLayout>
<com.gmeremit.online.gmeremittance_native.customwidgets.GmeTextView
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<com.gmeremit.online.gmeremittance_native.customwidgets.GmeTextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:paddingTop="10dp"
android:text="Paying Amount"
android:text="Paying Amount: "
android:textColor="@color/dark_gray"
android:textSize="13sp" />
<com.gmeremit.online.gmeremittance_native.customwidgets.GmeTextView
android:layout_width="match_parent"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:text="50,000.00 KRW"
@ -189,18 +224,25 @@
android:textSize="13sp"
android:textStyle="bold"
app:txtfontName="@string/semibold" />
</LinearLayout>
<com.gmeremit.online.gmeremittance_native.customwidgets.GmeTextView
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<com.gmeremit.online.gmeremittance_native.customwidgets.GmeTextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:paddingTop="10dp"
android:text="Exchange Rate"
android:text="Exchange Rate: "
android:textColor="@color/dark_gray"
android:textSize="13sp" />
<com.gmeremit.online.gmeremittance_native.customwidgets.GmeTextView
android:layout_width="match_parent"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:text="0.00977"
@ -208,18 +250,25 @@
android:textSize="13sp"
android:textStyle="bold"
app:txtfontName="@string/semibold" />
</LinearLayout>
<com.gmeremit.online.gmeremittance_native.customwidgets.GmeTextView
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<com.gmeremit.online.gmeremittance_native.customwidgets.GmeTextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:paddingTop="10dp"
android:text="Service Charge"
android:text="Service Charge: "
android:textColor="@color/dark_gray"
android:textSize="13sp" />
<com.gmeremit.online.gmeremittance_native.customwidgets.GmeTextView
android:layout_width="match_parent"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:text="5000 KRW"
@ -227,18 +276,25 @@
android:textSize="13sp"
android:textStyle="bold"
app:txtfontName="@string/semibold" />
</LinearLayout>
<com.gmeremit.online.gmeremittance_native.customwidgets.GmeTextView
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<com.gmeremit.online.gmeremittance_native.customwidgets.GmeTextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:paddingTop="10dp"
android:text="Payout Agent/Bank"
android:text="Payout Agent/Bank: "
android:textColor="@color/dark_gray"
android:textSize="13sp" />
<com.gmeremit.online.gmeremittance_native.customwidgets.GmeTextView
android:layout_width="match_parent"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:text="[Any Where]"
@ -246,6 +302,8 @@
android:textSize="13sp"
android:textStyle="bold"
app:txtfontName="@string/semibold" />
</LinearLayout>
</LinearLayout>

Loading…
Cancel
Save