64 lines
2.5 KiB
XML
64 lines
2.5 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:id="@+id/linearLayout2"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/background_primary"
|
|
android:gravity="center_horizontal"
|
|
tools:context="de.schildbach.wallet.ui.verify.ShowSeedFragment">
|
|
|
|
<include
|
|
android:id="@+id/verify_appbar"
|
|
layout="@layout/app_bar_general"
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
<TextView
|
|
android:id="@+id/recovery_seed"
|
|
style="@style/VerifySeedTextView"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toBottomOf="@+id/verify_appbar"
|
|
tools:text="network stand grid bundle need eight blast topic depth right desk faith" />
|
|
|
|
<include
|
|
android:id="@+id/screenshot_warning"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginHorizontal="15dp"
|
|
android:layout_marginTop="10dp"
|
|
layout="@layout/screenshot_warning_widget"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toBottomOf="@id/recovery_seed" />
|
|
|
|
<FrameLayout
|
|
android:id="@+id/explanation_btn"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginHorizontal="16dp"
|
|
android:layout_marginBottom="9dp"
|
|
android:clickable="true"
|
|
android:focusable="true"
|
|
android:paddingVertical="10dp"
|
|
app:layout_constraintBottom_toTopOf="@id/confirm_btn">
|
|
|
|
<TextView
|
|
style="@style/Subtitle2.Blue"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/verify_why_no_screenshot"
|
|
android:textAlignment="center" />
|
|
</FrameLayout>
|
|
|
|
<Button
|
|
android:id="@+id/confirm_btn"
|
|
style="@style/Button.Primary.Large.Blue"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="16dp"
|
|
android:text="@string/view_seed_done"
|
|
app:layout_constraintBottom_toBottomOf="parent" />
|
|
</androidx.constraintlayout.widget.ConstraintLayout> |