123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- <?xml version="1.0" encoding="utf-8"?>
- <androidx.constraintlayout.widget.ConstraintLayout 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">
- <FrameLayout
- android:id="@+id/background"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="#70C1FF"
- app:layout_constraintBottom_toBottomOf="parent"
- app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintTop_toTopOf="parent"></FrameLayout>
- <FrameLayout
- android:layout_width="1280dp"
- android:layout_height="720dp"
- android:gravity="center"
- android:orientation="vertical"
- app:layout_constraintBottom_toBottomOf="parent"
- app:layout_constraintDimensionRatio="h,16:9"
- app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintTop_toTopOf="parent">
- <ImageView
- android:id="@+id/activity_pay_back"
- android:layout_width="77dp"
- android:layout_height="77dp"
- android:layout_marginLeft="32dp"
- android:layout_marginTop="20dp"
- android:src="@drawable/main_back"></ImageView>
- <ImageView
- android:id="@+id/activity_pay_tmail_tomyorder"
- android:layout_width="130dp"
- android:layout_height="130dp"
- android:layout_gravity="right"
- android:layout_marginTop="20dp"
- android:layout_marginRight="32dp"
- android:src="@drawable/activity_pay_myorder"></ImageView>
- <FrameLayout
- android:layout_width="1196dp"
- android:layout_height="613dp"
- android:layout_gravity="center|bottom"
- android:layout_marginBottom="27dp"
- android:background="@drawable/activity_pay_bg">
- <LinearLayout
- android:layout_width="1062dp"
- android:layout_height="474dp"
- android:layout_gravity="center"
- android:layout_marginTop="10dp"
- android:orientation="horizontal">
- <LinearLayout
- android:id="@+id/activity_pay_tmail_item_layouts"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_gravity="center"
- android:layout_marginTop="30dp"
- android:layout_marginBottom="30dp"
- android:gravity="center"
- android:orientation="horizontal"
- android:paddingLeft="156dp"
- android:paddingRight="156dp">
- </LinearLayout>
- </LinearLayout>
- </FrameLayout>
- <FrameLayout
- android:id="@+id/activity_pay_qrcode_layout"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/translucent_background"
- android:visibility="gone">
- <ImageView
- android:id="@+id/activity_pay_qrcode"
- android:layout_width="300dp"
- android:layout_height="300dp"
- android:layout_gravity="center"
- android:layout_marginTop="30dp"
- android:background="@color/red"></ImageView>
- <ImageView
- android:id="@+id/activity_pay_qrcode_layout_close"
- android:layout_width="50dp"
- android:layout_height="50dp"
- android:layout_gravity="center"
- android:layout_marginTop="250dp"
- android:src="@drawable/close_icon"></ImageView>
- </FrameLayout>
- </FrameLayout>
- </androidx.constraintlayout.widget.ConstraintLayout>
|