107 lines
No EOL
4.1 KiB
XML
107 lines
No EOL
4.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout 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/coordinator_wallet"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/backgroundLightGray"
|
|
android:orientation="vertical">
|
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
|
android:id="@+id/app_bar"
|
|
style="@style/Widget.MaterialComponents.Toolbar.Surface"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@color/backgroundLightGray"
|
|
android:fitsSystemWindows="true"
|
|
app:liftOnScroll="true">
|
|
|
|
<com.google.android.material.appbar.MaterialToolbar
|
|
android:id="@+id/toolbar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="?attr/actionBarSize"
|
|
app:navigationIcon="@drawable/ic_baseline_arrow_back_24"
|
|
app:title="@string/send_title" />
|
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
|
|
|
<ScrollView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:fillViewport="true"
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<include
|
|
layout="@layout/layout_send_address_payid"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="16dp" />
|
|
|
|
<include
|
|
layout="@layout/layout_send_amount"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="4dp" />
|
|
|
|
<include
|
|
android:id="@+id/clNetworkFee"
|
|
layout="@layout/layout_send_fee"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="16dp"
|
|
android:visibility="gone"
|
|
tools:visibility="visible" />
|
|
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1"
|
|
android:minHeight="1dp" />
|
|
|
|
<include
|
|
android:id="@+id/clReceiptContainer"
|
|
layout="@layout/layout_send_receipt"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="32dp"
|
|
android:layout_marginBottom="24dp"
|
|
tools:visibility="visible" />
|
|
|
|
<LinearLayout
|
|
android:id="@+id/llBottomButtonContainer"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:layout_marginStart="30dp"
|
|
android:layout_marginEnd="30dp"
|
|
android:layout_marginBottom="33dp"
|
|
android:orientation="horizontal">
|
|
|
|
<Space
|
|
android:layout_width="100dp"
|
|
android:layout_height="wrap_content" />
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
android:id="@+id/btnSend"
|
|
style="@style/TapButtonWithIcon"
|
|
android:layout_width="200dp"
|
|
android:layout_height="48dp"
|
|
android:layout_gravity="end"
|
|
android:enabled="false"
|
|
android:fontFamily="@font/saira_semi_condensed_regular"
|
|
android:text="@string/send_btn_send"
|
|
app:icon="@drawable/ic_arrow_right" />
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
</ScrollView>
|
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout> |