android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
+ app:layout_constraintBottom_toBottomOf="parent"
tools:context=".TransactionListActivity">
<LinearLayout
android:id="@+id/transaction_swipe"
android:layout_width="match_parent"
android:layout_height="0dp"
+ app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintTop_toBottomOf="@+id/transaction_progress_bar">
<android.support.v7.widget.RecyclerView
android:id="@+id/transaction_root"
android:layout_width="match_parent"
- android:layout_height="match_parent" />
+ android:layout_height="match_parent"
+ android:scrollbars="vertical" />
</android.support.v4.widget.SwipeRefreshLayout>
</android.support.constraint.ConstraintLayout>