|
@@ -0,0 +1,76 @@
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
+<layout 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">
|
|
|
+
|
|
|
+ <data>
|
|
|
+
|
|
|
+ </data>
|
|
|
+
|
|
|
+ <androidx.constraintlayout.widget.ConstraintLayout style="@style/match">
|
|
|
+
|
|
|
+ <com.doverfuelingsolutions.issp.view.widget.FragmentToolbar
|
|
|
+ android:id="@+id/fragmentToolbar"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ app:countdownTime="60"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintStart_toEndOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="parent"
|
|
|
+ app:title="@string/select_pay_type" />
|
|
|
+
|
|
|
+ <androidx.appcompat.widget.LinearLayoutCompat
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="parent"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ android:gravity="center_horizontal"
|
|
|
+ style="@style/wrap">
|
|
|
+
|
|
|
+ <androidx.appcompat.widget.LinearLayoutCompat
|
|
|
+ style="@style/wrap"
|
|
|
+ android:orientation="vertical"
|
|
|
+ android:gravity="center_horizontal">
|
|
|
+
|
|
|
+ <androidx.appcompat.widget.AppCompatImageView
|
|
|
+ android:id="@+id/payTypeScan"
|
|
|
+ android:src="@mipmap/ic_qr_pay"
|
|
|
+ android:layout_width="360dp"
|
|
|
+ android:layout_height="360dp"/>
|
|
|
+
|
|
|
+ <androidx.appcompat.widget.AppCompatTextView
|
|
|
+ android:text="@string/pay_by_qr"
|
|
|
+ android:textColor="@color/black"
|
|
|
+ android:textSize="48sp"
|
|
|
+ android:layout_marginTop="40dp"
|
|
|
+ style="@style/wrap"/>
|
|
|
+ </androidx.appcompat.widget.LinearLayoutCompat>
|
|
|
+
|
|
|
+ <androidx.appcompat.widget.LinearLayoutCompat
|
|
|
+ android:layout_marginStart="120dp"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="parent"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ style="@style/wrap"
|
|
|
+ android:orientation="vertical"
|
|
|
+ android:gravity="center_horizontal">
|
|
|
+
|
|
|
+ <androidx.appcompat.widget.AppCompatImageView
|
|
|
+ android:id="@+id/payTypeFace"
|
|
|
+ android:src="@mipmap/ic_face_pay"
|
|
|
+ android:layout_width="360dp"
|
|
|
+ android:layout_height="360dp"/>
|
|
|
+
|
|
|
+ <androidx.appcompat.widget.AppCompatTextView
|
|
|
+ android:text="@string/pay_by_ali_face"
|
|
|
+ android:textColor="@color/black"
|
|
|
+ android:textSize="48sp"
|
|
|
+ android:layout_marginTop="40dp"
|
|
|
+ style="@style/wrap"/>
|
|
|
+ </androidx.appcompat.widget.LinearLayoutCompat>
|
|
|
+ </androidx.appcompat.widget.LinearLayoutCompat>
|
|
|
+ </androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
+</layout>
|