diff options
| author | Clyhtsuriva <aimeric@adjutor.xyz> | 2021-02-22 20:56:09 +0100 | 
|---|---|---|
| committer | Clyhtsuriva <aimeric@adjutor.xyz> | 2021-02-22 20:56:09 +0100 | 
| commit | d54ff3be42662f304879d5bd851641554ad1013c (patch) | |
| tree | d080b3918bf10532b482fde398676a6d13e31f82 /app/src/main/res | |
| parent | ac950ab43854d06ac8ceee3c2402bdee5e13870e (diff) | |
SwipeRefresh added to top anime.feature/swipe_to_refresh
Diffstat (limited to 'app/src/main/res')
| -rw-r--r-- | app/src/main/res/layout/top_anime_page.xml | 8 | 
1 files changed, 7 insertions, 1 deletions
| diff --git a/app/src/main/res/layout/top_anime_page.xml b/app/src/main/res/layout/top_anime_page.xml index 4b6a58f..4bcc377 100644 --- a/app/src/main/res/layout/top_anime_page.xml +++ b/app/src/main/res/layout/top_anime_page.xml @@ -8,6 +8,10 @@      tools:context=".topanime.TopAnimePage"      android:background="@color/very_dark_purple"> +    <androidx.swiperefreshlayout.widget.SwipeRefreshLayout +        android:id="@+id/swiperefresh" +        android:layout_width="match_parent" +        android:layout_height="match_parent">      <androidx.recyclerview.widget.RecyclerView          android:id="@+id/recycler_view"          android:layout_width="0dp" @@ -16,7 +20,9 @@          app:layout_constraintEnd_toEndOf="parent"          app:layout_constraintStart_toStartOf="parent"          app:layout_constraintTop_toTopOf="parent" -        tools:listitem="@layout/item_layout" /> +        tools:listitem="@layout/item_layout" +        android:scrollbars="vertical" /> +    </androidx.swiperefreshlayout.widget.SwipeRefreshLayout>      <Button          android:id="@+id/button_home" | 
