2021-04-06 13:03:33 -03:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2022-08-09 13:29:04 -03:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
tools:viewBindingIgnore="true"
|
2021-04-06 13:03:33 -03:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.Toolbar
|
|
|
|
android:theme="?actionBarStyle"
|
|
|
|
android:id="@+id/payments_home_fragment_toolbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="?attr/actionBarSize"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
app:navigationIcon="@drawable/ic_arrow_left_24"
|
|
|
|
app:title="@string/preferences__payments_beta"
|
|
|
|
app:titleTextAppearance="@style/TextAppearance.Signal.Body1.Bold" />
|
|
|
|
|
|
|
|
<include
|
|
|
|
layout="@layout/payments_home_fragment_header"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
|
|
android:id="@+id/payments_home_fragment_recycler"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:scrollIndicators="top|bottom"
|
|
|
|
android:scrollbars="vertical"
|
|
|
|
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager" />
|
|
|
|
|
|
|
|
</LinearLayout>
|