2019-04-29 19:27:51 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
|
|
|
|
|
android:id="@+id/pullToRefreshFood"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="0dp"
|
|
|
|
|
android:layout_marginStart="0dp"
|
|
|
|
|
android:layout_marginTop="0dp"
|
|
|
|
|
android:layout_marginEnd="0dp"
|
|
|
|
|
android:layout_marginBottom="0dp"
|
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2019-05-21 18:55:29 +02:00
|
|
|
android:background="@color/background">
|
2019-04-29 19:27:51 +02:00
|
|
|
|
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
|
|
|
android:id="@+id/linear_food"
|
|
|
|
|
android:layout_width="match_parent"
|
2019-04-30 19:24:13 +02:00
|
|
|
android:layout_height="match_parent"
|
2019-05-09 07:48:17 +02:00
|
|
|
android:layoutAnimation="@anim/layout_animation_fall_down"
|
|
|
|
|
android:scrollbars="vertical"/>
|
2019-04-29 19:27:51 +02:00
|
|
|
|
|
|
|
|
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
|