Make EditEntryActivity scrollable again

Co-authored-by: Alexander Bakker <ab@alexbakker.me>
This commit is contained in:
Michael Schättgen 2024-04-29 00:02:14 +02:00 committed by Alexander Bakker
parent dee881bc05
commit 2b2c4fc0ce

View File

@ -16,9 +16,13 @@
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize" />
</com.google.android.material.appbar.AppBarLayout>
<ScrollView
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_height="match_parent"
android:layout_marginTop="?attr/actionBarSize">
<androidx.core.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clipToPadding="false"
android:isScrollContainer="true"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
@ -250,8 +254,8 @@
<RelativeLayout
android:id="@+id/expandableLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:visibility="invisible">
android:layout_height="wrap_content"
android:visibility="gone">
<LinearLayout
android:id="@+id/layout_advanced"
android:layout_width="match_parent"
@ -392,7 +396,7 @@
</RelativeLayout>
</LinearLayout>
</ScrollView>
</androidx.core.widget.NestedScrollView>
</FrameLayout>
</androidx.coordinatorlayout.widget.CoordinatorLayout>