diff options
author | Clyhtsuriva <aimeric@adjutor.xyz> | 2021-03-23 10:54:41 +0100 |
---|---|---|
committer | Clyhtsuriva <aimeric@adjutor.xyz> | 2021-03-23 10:54:41 +0100 |
commit | bd885788c79cfa37bb2ff02faf4ae2516b87b5dd (patch) | |
tree | 3008f3643180e237bd735cce7a4ddf72f883acf8 /app/src/main/res/layout/top_anime_page.xml | |
parent | d283df0f70241bb6b54bee66e8fb9564b0051376 (diff) |
Feature added to animes.feature/multiple_top_pages
Removed the ScrollListener, I prefer to only use buttons for the feature.
Diffstat (limited to 'app/src/main/res/layout/top_anime_page.xml')
-rw-r--r-- | app/src/main/res/layout/top_anime_page.xml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/app/src/main/res/layout/top_anime_page.xml b/app/src/main/res/layout/top_anime_page.xml index c7ec862..6797660 100644 --- a/app/src/main/res/layout/top_anime_page.xml +++ b/app/src/main/res/layout/top_anime_page.xml @@ -25,6 +25,14 @@ </androidx.swiperefreshlayout.widget.SwipeRefreshLayout> <Button + android:id="@+id/button_prev" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="@string/prev" + app:layout_constraintBottom_toBottomOf="parent" + app:layout_constraintEnd_toStartOf="@id/button_home" /> + + <Button android:id="@+id/button_home" android:layout_width="wrap_content" android:layout_height="wrap_content" @@ -33,4 +41,12 @@ app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent" /> + <Button + android:id="@+id/button_next" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="@string/next" + app:layout_constraintBottom_toBottomOf="parent" + app:layout_constraintStart_toEndOf="@id/button_home" /> + </androidx.constraintlayout.widget.ConstraintLayout>
\ No newline at end of file |