-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unable to use search on Android 15 #206
Comments
This regression was introduced in b7522fa Looks like the bug doesn't occur on Android 14. Also: rolling back We may be hitting this behavior change, when targeting Android 15, regarding insets: https://developer.android.com/about/versions/15/behavior-changes-15#edge-to-edge |
We're hitting this behavior change when targeting Android 15: https://developer.android.com/about/versions/15/behavior-changes-15#not-edge-to-edge The documentation says: > you need to add android:fitsSystemWindows="true" if using AppBarLayout.
We're hitting this behavior change when targeting Android 15: https://developer.android.com/about/versions/15/behavior-changes-15#not-edge-to-edge The documentation says: > you need to add android:fitsSystemWindows="true" if using AppBarLayout. Also apply a code snippet to various views: to ensure that the top and bottom aren't hidden under the system bars.
We're hitting this behavior change when targeting Android 15: https://developer.android.com/about/versions/15/behavior-changes-15#not-edge-to-edge The documentation says: > you need to add android:fitsSystemWindows="true" if using AppBarLayout. Also apply a code snippet to various views: to ensure that the top and bottom aren't hidden under the system bars.
Issue #206: Fix broken insets since targeting Android 15.
Thanks again for reporting this, and being on the bleeding edge with the latest Android version 😁 Release 1.30.9 (#208) fixes a few related things:
However, after pushing this release, I realized that there's still at least one remaining issue: in landscape mode, if you have a navigation bar (you're not using gesture navigation), the overflow menu (the three dots) is unclickable, under the navigation bar: This is addressed in #209 and will be in release-1.30.10. |
The previous approach assumed we'd need similar inset adjustments to the root view, in all screens. Each screen is a bit different. Adjust the padding/margins of views per the insets, for each screen accordingly.
The previous approach assumed we'd need similar inset adjustments to the root view, in all screens. Each screen is a bit different. Adjust the padding/margins of views per the insets, for each screen accordingly.
…andscape Issue #206: Fix various insets
Required before filing an issue:
I am a:
Latest version (1.30.8) displays the search icon on top of the screen in the notification area (with battery level, network strength, etc.) and is unusable on Android 15 Graphene OS. Note this occurs in portrait mode only. Landscape mode works.
The text was updated successfully, but these errors were encountered: