Fixed
Status Update
Comments
co...@google.com <co...@google.com> #2
I have the same problem. I hope this issue gets resolved quickly.
co...@google.com <co...@google.com>
ap...@google.com <ap...@google.com> #3
I'm having the same problem, which makes this a dealbreaker for using it unfortunately.
co...@google.com <co...@google.com> #4
I have somewhat tracked down the issue here and https://issuetracker.google.com/268380384
In the other bug, the underlying popup is not set as focusable, so the keyboard opens. In alpha08 we have set the popup as focusable to intercept focus when the popup opens for A11y purposes. However it has the unintended consequence of intercepting ime actions, for some reason not passing them to child content despite the content (like textfield) still being focusable... Working on a solution.
In the other bug, the underlying popup is not set as focusable, so the keyboard opens. In alpha08 we have set the popup as focusable to intercept focus when the popup opens for A11y purposes. However it has the unintended consequence of intercepting ime actions, for some reason not passing them to child content despite the content (like textfield) still being focusable... Working on a solution.
co...@google.com <co...@google.com> #5
I find a way to make TextField editable for me. you can make a try.
ModalBottomSheet(/* .... */) {
// add follow code here to make your text filed edtable.
val view = LocalView.current.rootView.allViews
.filter { it.javaClass.name == "androidx.compose.ui.window.PopupLayout" }
.toList()
.first()
(view.context.getSystemService(Context.WINDOW_SERVICE) as WindowManager)
.updateViewLayout(view,
(view.layoutParams as WindowManager.LayoutParams).apply {
flags = flags and WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE.inv()
})
// your bottom sheet content code
TextField(/* ... */)
}
ap...@google.com <ap...@google.com> #6
Has anyone found any way to fix this?
pr...@google.com <pr...@google.com> #7
This issue which extends to any custom windows seems to have been resolved with:
Waiting on that change to land to proceed on this issue.
Description
The following Experimental APIs have existed for several releases.
Please consider stabilising or removing these APIs: