Archived
26 lines
1.0 KiB
XML
26 lines
1.0 KiB
XML
<?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"
|
||
|
|
android:background="?attr/colorBackground">
|
||
|
|
|
||
|
|
<androidx.recyclerview.widget.RecyclerView
|
||
|
|
android:id="@+id/linear_food"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layoutAnimation="@anim/layout_animation_fall_down">
|
||
|
|
|
||
|
|
</androidx.recyclerview.widget.RecyclerView>
|
||
|
|
|
||
|
|
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
|