2021-04-06 13:03:33 -03:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2022-11-01 11:33:43 -07:00
|
|
|
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2021-04-06 13:03:33 -03:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2022-09-15 11:05:07 -03:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2021-04-06 13:03:33 -03:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2022-09-15 11:05:07 -03:00
|
|
|
android:orientation="vertical"
|
|
|
|
tools:viewBindingIgnore="true">
|
2021-04-06 13:03:33 -03:00
|
|
|
|
|
|
|
<androidx.appcompat.widget.Toolbar
|
|
|
|
android:id="@+id/payments_home_fragment_toolbar"
|
|
|
|
android:layout_width="match_parent"
|
2022-09-15 11:05:07 -03:00
|
|
|
android:layout_height="@dimen/signal_m3_toolbar_height"
|
|
|
|
android:minHeight="@dimen/signal_m3_toolbar_height"
|
|
|
|
android:theme="?actionBarStyle"
|
2022-11-01 11:33:43 -07:00
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2021-04-06 13:03:33 -03:00
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
app:navigationIcon="@drawable/ic_arrow_left_24"
|
|
|
|
app:title="@string/preferences__payments_beta"
|
2022-09-15 11:05:07 -03:00
|
|
|
app:titleTextAppearance="@style/Signal.Text.TitleLarge" />
|
2021-04-06 13:03:33 -03:00
|
|
|
|
2022-11-01 11:33:43 -07:00
|
|
|
<ViewStub
|
|
|
|
android:id="@+id/reminder"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:inflatedId="@+id/reminder"
|
|
|
|
android:layout="@layout/conversation_list_reminder_view"
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/payments_home_fragment_toolbar" />
|
|
|
|
|
|
|
|
<androidx.constraintlayout.widget.Barrier
|
|
|
|
android:id="@+id/banner_barrier"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
app:barrierDirection="bottom"
|
|
|
|
app:constraint_referenced_ids="reminder" />
|
|
|
|
|
2021-04-06 13:03:33 -03:00
|
|
|
<include
|
|
|
|
layout="@layout/payments_home_fragment_header"
|
|
|
|
android:layout_width="match_parent"
|
2022-11-01 11:33:43 -07:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/banner_barrier" />
|
2021-04-06 13:03:33 -03:00
|
|
|
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
|
|
android:id="@+id/payments_home_fragment_recycler"
|
|
|
|
android:layout_width="match_parent"
|
2022-11-01 11:33:43 -07:00
|
|
|
android:layout_height="0dp"
|
2021-04-06 13:03:33 -03:00
|
|
|
android:scrollIndicators="top|bottom"
|
|
|
|
android:scrollbars="vertical"
|
2022-11-01 11:33:43 -07:00
|
|
|
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/payments_home_fragment_header" />
|
2021-04-06 13:03:33 -03:00
|
|
|
|
2022-11-01 11:33:43 -07:00
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|