Signal-Android/app/src/main/res/layout/payments_home_fragment.xml

31 wiersze
1.3 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
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>