48 lines
No EOL
2.2 KiB
XML
48 lines
No EOL
2.2 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:viewBindingIgnore="true">
|
|
|
|
<androidx.appcompat.widget.Toolbar
|
|
android:id="@+id/payments_recovery_paste_fragment_toolbar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/signal_m3_toolbar_height"
|
|
android:minHeight="@dimen/signal_m3_toolbar_height"
|
|
android:theme="?actionBarStyle"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
app:navigationIcon="@drawable/ic_arrow_left_24"
|
|
app:title="@string/PaymentsRecoveryPasteFragment__paste_recovery_phrase"
|
|
app:titleTextAppearance="@style/Signal.Text.TitleLarge" />
|
|
|
|
<EditText
|
|
android:id="@+id/payments_recovery_paste_fragment_phrase"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="16dp"
|
|
android:layout_marginTop="8dp"
|
|
android:layout_marginEnd="16dp"
|
|
android:hint="@string/PaymentsRecoveryPasteFragment__recovery_phrase"
|
|
android:inputType="textVisiblePassword"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toBottomOf="@id/payments_recovery_paste_fragment_toolbar" />
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
android:id="@+id/payments_recovery_paste_fragment_next"
|
|
style="@style/Signal.Widget.Button.Large.Primary"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginEnd="16dp"
|
|
android:layout_marginBottom="16dp"
|
|
android:text="@string/PaymentsRecoveryPasteFragment__next"
|
|
app:cornerRadius="28dp"
|
|
app:elevation="4dp"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintEnd_toEndOf="parent" />
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout> |