Files
AndroidJava/dash-wallet/wallet/res/layout/fragment_receive.xml
T
coco 7846a45f2c a
2026-07-03 15:47:27 +08:00

35 lines
1.4 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"
android:orientation="vertical"
android:background="@color/background_primary"
tools:context="de.schildbach.wallet.ui.payments.ReceiveFragment">
<androidx.appcompat.widget.Toolbar
android:id="@+id/title_bar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:title="@string/receive_title"
app:titleTextColor="@color/content_primary"
app:layout_constraintTop_toTopOf="parent"
app:navigationIcon="@drawable/ic_arrow_back" />
<androidx.constraintlayout.widget.Guideline
android:id="@+id/amount_guideline"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_constraintGuide_percent="0.22"
android:orientation="horizontal" />
<FrameLayout
android:id="@+id/enter_amount_fragment_placeholder"
android:layout_width="match_parent"
android:layout_height="0dp"
app:layout_constraintTop_toBottomOf="@id/amount_guideline"
app:layout_constraintBottom_toBottomOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>