Status Update
Comments
ap...@google.com <ap...@google.com> #2
It's a real stopper to use in not helloworld apps.
It must be joke, define it as "An issue that should be addressed eventually. Such an issue is not relevant to core organizational functions or the work of other teams, or else it relates only to the attractiveness or pleasantness of the system."
Why use compose in production, if this base things resolved for years?
il...@google.com <il...@google.com>
mg...@google.com <mg...@google.com> #3
This is high priority for us. The "Priority" field on buganizer is misleading, it has a very specific internal meaning and interaction with other systems so we don't use it for actual prioritization for compose text issues. Unfortunately, the way we track actual priority is not visible externally.
ap...@google.com <ap...@google.com> #4
Does this work as expected for you with Views? I was able to reproduce this bug with views as well – an EditText
inside a ScrollView
will not cause the view to scroll to keep the EditText
in view if the keyboard covers it.
mg...@google.com <mg...@google.com>
il...@google.com <il...@google.com> #5
We've been taking a closer look at this bug and considered alternatives to fixing it, which require larger changes to the Compose keyboard controller and BringIntoView APIs.
Unfortunately since Compose 1.2 is already in beta, the API is effectively frozen. We could explore more hacky ways to fix it in 1.2, but considering this behaviour matches what happens with Views, we decided it was better to fix properly with more time as opposed to fix it with a hack, increasing the tech debt and potentially creating other bugs.
As a workaround, either don't call setDecorFitsSystemWindows(false)
for now, or if you do, use ViewCompat.setWindowInsetsAnimationCallback
BringIntoViewRequester
API.
pr...@google.com <pr...@google.com> #6
Branch: androidx-main
commit d15475fecc931bf1044888b10eddd1a13db2e64c
Author: Zach Klippenstein <klippenstein@google.com>
Date: Mon May 23 15:17:11 2022
Improve WindowInsets.ime kdoc to include API 23.
The WindowInsets.ime value is actually supported on API 23+,
so I updated the kdoc to say that. However, it's only *animated* on 30+,
so I clarified that in the kdoc as well.
This change also adds a demo to the demo app that shows the actual
insets.
Bug:
Test: n/a, only a docs change
Relnote: "Clarified the documentation for `WindowInsets.ime` to state
that `ime` insets are reported as far back as API 23, but only
_animated_ on 30+."
Change-Id: Ia7fc002bde64074be7a176121483bff3017f24a8
A compose/foundation/foundation/integration-tests/foundation-demos/src/main/java/androidx/compose/foundation/demos/WindowInsetsDemo.kt
M compose/foundation/foundation-layout/src/androidMain/kotlin/androidx/compose/foundation/layout/WindowInsets.android.kt
M compose/foundation/foundation/integration-tests/foundation-demos/src/main/java/androidx/compose/foundation/demos/FoundationDemos.kt
Description
Lifecycle.State
fromINITIALIZED
toDESTROYED
needing to throw whether there was an observer or not.But attempting to move the
Lifecycle.State
fromDESTROYED
to any other state should throw as well asDESTROYED
is a terminal state for any component that has aLifecycle
.