diff options
| author | Clyhtsuriva <aimeric@adjutor.xyz> | 2021-02-22 20:55:37 +0100 | 
|---|---|---|
| committer | Clyhtsuriva <aimeric@adjutor.xyz> | 2021-02-22 20:55:37 +0100 | 
| commit | ac950ab43854d06ac8ceee3c2402bdee5e13870e (patch) | |
| tree | 83aaac57cb504664f56e2ff78954859f31a8933b /app/src/main/res | |
| parent | 4012256bf91ccf02eb1871229f755beb26dad3de (diff) | |
SwipeRefresh implemented and added to mangas.
Diffstat (limited to 'app/src/main/res')
| -rw-r--r-- | app/src/main/res/layout/top_manga_page.xml | 8 | 
1 files changed, 7 insertions, 1 deletions
| diff --git a/app/src/main/res/layout/top_manga_page.xml b/app/src/main/res/layout/top_manga_page.xml index 95c9161..37150f7 100644 --- a/app/src/main/res/layout/top_manga_page.xml +++ b/app/src/main/res/layout/top_manga_page.xml @@ -8,6 +8,10 @@      tools:context=".topmanga.TopMangaPage"      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" | 
