This repository has been archived on 2026-05-26. You can view files and clone it. You cannot open issues or pull requests or push a commit.
2019-04-29 19:27:51 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
|
2019-05-26 11:35:36 +02:00
|
|
|
android:id="@+id/pullToRefresh"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
2019-04-29 19:27:51 +02:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
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>
|