diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 660e3d2e6..6f92ccf7b 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -145,7 +145,7 @@ android:configChanges="keyboardHidden" /> + android:windowSoftInputMode="adjustResize" /> { + val imeHeight = windowInsets.getInsets(WindowInsetsCompat.Type.ime()).bottom if (view.layoutParams is ViewGroup.MarginLayoutParams) { view.updateLayoutParams { - bottomMargin = insets.bottom + bottomMargin = if (imeHeight > 1) 0 else insets.bottom + } + } + } + WindowInsetPosition.TOP_BOTTOM_IME -> { + val imeHeight = windowInsets.getInsets(WindowInsetsCompat.Type.ime()).bottom + if (view.layoutParams is ViewGroup.MarginLayoutParams) { + view.updateLayoutParams { + topMargin = insets.top + bottomMargin = if (imeHeight > 1) imeHeight else 0 } } } @@ -363,5 +373,5 @@ fun View.applyWindowInsets(position: WindowInsetPosition = WindowInsetPosition.B } enum class WindowInsetPosition { - TOP, BOTTOM, LEGIT_TOP + TOP, BOTTOM, LEGIT_TOP, TOP_BOTTOM_IME } diff --git a/app/src/main/res/layout/activity_entry_edit.xml b/app/src/main/res/layout/activity_entry_edit.xml index d2bf00171..3ba3b8967 100644 --- a/app/src/main/res/layout/activity_entry_edit.xml +++ b/app/src/main/res/layout/activity_entry_edit.xml @@ -22,59 +22,55 @@ xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:importantForAutofill="noExcludeDescendants" + android:id="@+id/activity_entry_edit_container" tools:targetApi="o" android:layout_width="match_parent" android:layout_height="match_parent" android:filterTouchesWhenObscured="true"> + + + android:layout_height="0dp" + app:layout_constraintTop_toBottomOf="@+id/special_mode_view" + app:layout_constraintBottom_toBottomOf="parent"> - - - + - - - + - - - - - - + android:layout_height="wrap_content" + app:layout_constraintTop_toTopOf="parent" /> + + + @@ -82,14 +78,14 @@ android:id="@+id/activity_entry_edit_footer" android:layout_width="match_parent" android:layout_height="wrap_content" - app:layout_constraintBottom_toBottomOf="parent"> + app:layout_constraintBottom_toTopOf="@+id/screenshot_mode_banner"> + app:layout_constraintBottom_toBottomOf="parent" /> - - + app:layout_constraintBottom_toBottomOf="parent"/> + +