123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <?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"
- android:background="@android:color/white">
-
- <TextView
- android:id="@+id/withdrawTitle"
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginStart="@dimen/horizontalMargin"
- android:layout_marginTop="@dimen/verticalMargin"
- android:layout_marginEnd="@dimen/horizontalMargin"
- android:fontFamily="@font/cabin"
- android:text="@string/withdrawTitleText"
- android:textAlignment="textStart"
- android:textColor="@color/textColor2"
- android:textSize="@dimen/sectionTitleTextSize"
- android:textStyle="bold"
- app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintTop_toTopOf="parent" />
-
- <TextView
- android:id="@+id/withdrawText"
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginStart="@dimen/horizontalMargin"
- android:layout_marginTop="16dp"
- android:layout_marginEnd="@dimen/horizontalMargin"
- android:text="@string/loadingText"
- android:textAlignment="textStart"
- android:textSize="@dimen/sectionDescriptionTextSize"
- app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintTop_toBottomOf="@+id/withdrawTitle"
- tools:text="@string/withdrawDescriptionText" />
-
- <Button
- android:id="@+id/withdrawButton"
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginStart="@dimen/horizontalMargin"
- android:layout_marginEnd="@dimen/horizontalMargin"
- android:layout_marginBottom="@dimen/verticalMargin"
- android:background="@drawable/button_background"
- android:fontFamily="sans-serif-black"
- android:paddingHorizontal="@dimen/buttonHorizontalPadding"
- android:paddingVertical="@dimen/buttonVerticalPadding"
- android:text="@string/withdrawButtonText"
- android:textColor="@android:color/white"
- android:textSize="@dimen/buttonTextSize"
- android:textStyle="bold"
- app:layout_constraintBottom_toBottomOf="parent"
- app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintHeight_max="@dimen/buttonMaxHeight"
- app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintTop_toBottomOf="@+id/withdrawText" />
-
-
- </androidx.constraintlayout.widget.ConstraintLayout>
|