39 lines
1.7 KiB
XML
39 lines
1.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
tools:context="de.schildbach.wallet.ui.send.SendCoinsFragment">
|
|
|
|
<androidx.appcompat.widget.Toolbar
|
|
android:id="@+id/title_bar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="?attr/actionBarSize"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
app:navigationIcon="@drawable/ic_arrow_back" />
|
|
|
|
<org.dash.wallet.common.ui.PaymentHeaderView
|
|
android:id="@+id/payment_header"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toBottomOf="@id/title_bar" />
|
|
|
|
<androidx.constraintlayout.widget.Guideline
|
|
android:id="@+id/enter_amount_guideline"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
app:layout_constraintGuide_percent="0.22"
|
|
android:orientation="horizontal" />
|
|
|
|
<LinearLayout
|
|
android:id="@+id/enter_amount_fragment_placeholder"
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
app:layout_constraintTop_toBottomOf="@id/enter_amount_guideline"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
tools:layout="@layout/fragment_enter_amount" />
|
|
</androidx.constraintlayout.widget.ConstraintLayout> |