aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/top_manga_page.xml
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/main/res/layout/top_manga_page.xml')
-rw-r--r--app/src/main/res/layout/top_manga_page.xml21
1 files changed, 11 insertions, 10 deletions
diff --git a/app/src/main/res/layout/top_manga_page.xml b/app/src/main/res/layout/top_manga_page.xml
index 6a2f86b..f8d2510 100644
--- a/app/src/main/res/layout/top_manga_page.xml
+++ b/app/src/main/res/layout/top_manga_page.xml
@@ -5,17 +5,17 @@
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".TopMangaPage"
- android:background="@color/very_dark_purple"
- >
+ android:background="@color/very_dark_purple">
- <TextView
- android:id="@+id/textview_second"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- app:layout_constraintBottom_toTopOf="@id/home"
- app:layout_constraintEnd_toEndOf="parent"
+ <androidx.recyclerview.widget.RecyclerView
+ android:id="@+id/recycler_view"
+ android:layout_width="0dp"
+ android:layout_height="0dp"
+ app:layout_constraintTop_toTopOf="parent"
app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintTop_toTopOf="parent" />
+ app:layout_constraintEnd_toEndOf="parent"
+ app:layout_constraintBottom_toTopOf="@+id/home"
+ tools:listitem="@layout/item_layout" />
<Button
android:id="@+id/home"
@@ -25,5 +25,6 @@
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintTop_toBottomOf="@id/textview_second" />
+ />
+
</androidx.constraintlayout.widget.ConstraintLayout> \ No newline at end of file