Merge pull request #1364 from michaelschattgen/fix/edit-entry-scroll

Make EditEntryActivity scrollable again
This commit is contained in:
Michael Schättgen 2024-06-13 21:34:22 +02:00 committed by GitHub
commit 46ceeeafb9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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>