67 lines
2.6 KiB
XML
67 lines
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: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.VerifySeedConfirmFragment">
|
|
|
|
<include
|
|
android:id="@+id/verify_appbar"
|
|
layout="@layout/app_bar_general"
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
<com.google.android.flexbox.FlexboxLayout
|
|
android:id="@+id/recovery_seed_container"
|
|
style="@style/VerifySeedBox"
|
|
android:animateLayoutChanges="true"
|
|
android:minHeight="180dp"
|
|
app:alignContent="stretch"
|
|
app:alignItems="stretch"
|
|
app:flexWrap="wrap"
|
|
app:justifyContent="center"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toBottomOf="@+id/verify_appbar" />
|
|
|
|
<LinearLayout
|
|
android:id="@+id/verify_seed_container"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="14dp"
|
|
android:layout_marginLeft="14dp"
|
|
android:layout_marginEnd="14dp"
|
|
android:layout_marginRight="14dp"
|
|
android:layout_marginBottom="8dp"
|
|
android:orientation="vertical"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent">
|
|
|
|
<TextView
|
|
style="@style/Body2.Secondary"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="@dimen/verify_seed_buttons_tip_bottom_margin"
|
|
android:gravity="center"
|
|
android:textAlignment="gravity"
|
|
android:text="@string/verify_seed_buttons_tip" />
|
|
|
|
<com.google.android.flexbox.FlexboxLayout
|
|
android:id="@+id/word_buttons_container"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:animateLayoutChanges="true"
|
|
app:alignContent="stretch"
|
|
app:alignItems="stretch"
|
|
app:flexWrap="wrap"
|
|
app:justifyContent="center">
|
|
|
|
</com.google.android.flexbox.FlexboxLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout> |