summaryrefslogtreecommitdiffstats
path: root/app/src/main/res/layout
diff options
context:
space:
mode:
authorThomas <tschneider.ac@gmail.com>2022-12-06 17:50:25 +0100
committerThomas <tschneider.ac@gmail.com>2022-12-06 17:50:25 +0100
commit7ccb1c96b2ad7d58c878ba53e098abd76556fc27 (patch)
treec7b04b83a4d7119d491cc14efe88e7ab49685042 /app/src/main/res/layout
parent03d6c7f9113257aa65b228af00aef85b440f9067 (diff)
Fix issue #607 - Fetch more broken
Diffstat (limited to 'app/src/main/res/layout')
-rw-r--r--app/src/main/res/layout/drawer_status.xml22
1 files changed, 13 insertions, 9 deletions
diff --git a/app/src/main/res/layout/drawer_status.xml b/app/src/main/res/layout/drawer_status.xml
index 3a741fe3f..aa6609ab7 100644
--- a/app/src/main/res/layout/drawer_status.xml
+++ b/app/src/main/res/layout/drawer_status.xml
@@ -25,10 +25,6 @@
android:clipToPadding="false"
android:clipChildren="false">
- <View
- android:layout_width="match_parent"
- android:layout_height="1px"
- android:background="?colorOutline" />
<androidx.appcompat.widget.LinearLayoutCompat
android:id="@+id/main_container"
@@ -39,6 +35,15 @@
android:clipToPadding="false"
android:orientation="vertical">
+ <androidx.appcompat.widget.LinearLayoutCompat
+ android:id="@+id/fetch_more_container_top"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content" />
+
+ <View
+ android:layout_width="match_parent"
+ android:layout_height="1px"
+ android:background="?colorOutline" />
<androidx.appcompat.widget.LinearLayoutCompat
android:id="@+id/status_booster_info"
@@ -726,11 +731,10 @@
</androidx.constraintlayout.widget.ConstraintLayout>
- <include
- android:id="@+id/layout_fetch_more"
- layout="@layout/drawer_fetch_more"
- android:visibility="gone"
- tools:visibility="visible" />
+ <androidx.appcompat.widget.LinearLayoutCompat
+ android:id="@+id/fetch_more_container_bottom"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content" />
</androidx.appcompat.widget.LinearLayoutCompat>