2019-10-15 16:27:06 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-04-22 15:40:12 +00:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2019-10-15 16:27:06 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
2020-04-22 15:40:12 +00:00
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
2019-10-15 16:27:06 +00:00
|
|
|
android:id="@+id/rcyvwAccountTransactions"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="8dp"
|
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
android:layout_marginEnd="8dp"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
/>
|
|
|
|
|
2020-04-22 15:40:12 +00:00
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|