64 lines
No EOL
2.6 KiB
XML
64 lines
No EOL
2.6 KiB
XML
<?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"
|
|
tools:context="com.tangem.presentation.activity.CreateNewWalletActivity">
|
|
|
|
<include
|
|
layout="@layout/layout_touch_card"
|
|
android:layout_width="400dp"
|
|
android:layout_height="250dp"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
app:layout_constraintVertical_bias="0.25" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerVertical="true"
|
|
android:orientation="vertical"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
app:layout_constraintVertical_bias="0.75">
|
|
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:fontFamily="@font/maax"
|
|
android:text="@string/now_touch_the_banknote_with_id"
|
|
android:textAlignment="center"
|
|
android:textSize="@dimen/text_size_medium" />
|
|
|
|
<TextView
|
|
android:id="@+id/tvCardId"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="10dp"
|
|
android:layout_marginBottom="10dp"
|
|
android:fontFamily="@font/maax"
|
|
android:textAlignment="center"
|
|
android:textColor="@color/black"
|
|
android:textSize="@dimen/text_size_large"
|
|
tools:text="CB02 0000 0002 5000" />
|
|
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:fontFamily="@font/maax"
|
|
android:text="@string/to_create_the_wallet"
|
|
android:textAlignment="center"
|
|
android:textSize="@dimen/text_size_medium" />
|
|
|
|
</LinearLayout>
|
|
|
|
<include
|
|
android:id="@+id/progressBar"
|
|
layout="@layout/layout_progress_horizontal" />
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout> |