Archived
16 lines
657 B
XML
16 lines
657 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
|
|
android:id="@+id/pullToRefresh"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:background="@color/background">
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/linear_food"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layoutAnimation="@anim/layout_animation_fall_down"
|
|
android:scrollbars="vertical"/>
|
|
|
|
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout> |