Verified
Status Update
Comments
ma...@wnco.com <ma...@wnco.com> #2
I have the same problem. I hope this issue gets resolved quickly.
ma...@wnco.com <ma...@wnco.com> #3
I'm having the same problem, which makes this a dealbreaker for using it unfortunately.
re...@gmail.com <re...@gmail.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.
do...@gmail.com <do...@gmail.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(/* ... */)
}
se...@google.com <se...@google.com>
se...@google.com <se...@google.com>
ap...@google.com <ap...@google.com> #6
Has anyone found any way to fix this?
se...@google.com <se...@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.
pr...@google.com <pr...@google.com> #8
Project: platform/frameworks/support
Branch: androidx-main
commit 7545cec3617ab5d1ea83d66822bc094e7f03c562
Author: José Figueroa Santos <serniebanders@google.com>
Date: Wed Apr 19 16:04:18 2023
[Material3][gradle] Update compose dependencies to 1.4.2
Upgrade needed to intake the following bug fix: b/262140644 , which resolves issue of new windows not calling IME keyboard.
Bug: 268380384
Bug: 272483584
RelNote: ModalBottomSheet now can display IME keyboard
Test: Manual
Change-Id: Idc5082008acb547cac2100a69cab4be7db85f50f
M compose/material3/material3/build.gradle
M compose/material3/material3/samples/src/main/java/androidx/compose/material3/samples/BottomSheetSamples.kt
https://android-review.googlesource.com/2548352
Branch: androidx-main
commit 7545cec3617ab5d1ea83d66822bc094e7f03c562
Author: José Figueroa Santos <serniebanders@google.com>
Date: Wed Apr 19 16:04:18 2023
[Material3][gradle] Update compose dependencies to 1.4.2
Upgrade needed to intake the following bug fix:
Bug: 268380384
Bug: 272483584
RelNote: ModalBottomSheet now can display IME keyboard
Test: Manual
Change-Id: Idc5082008acb547cac2100a69cab4be7db85f50f
M compose/material3/material3/build.gradle
M compose/material3/material3/samples/src/main/java/androidx/compose/material3/samples/BottomSheetSamples.kt
do...@gmail.com <do...@gmail.com> #9
se...@google.com <se...@google.com>
se...@google.com <se...@google.com> #11
I tested on a Pixel 7 running Android 14 Beta 1 and a Galaxy S23 Ultra running Android 13, both with Gboard.
When I tap a text field, it focuses and the cursor shows up, but the text scrubber handle also appears and is aligned to the top of the field instead of below the text.
ap...@google.com <ap...@google.com> #12
It seems to be fully fixed in 1.2.0-alpha01.
Description
Jetpack Compose version: 2024.08.00 BOM
Material Library Version: "androidx.compose.material3:material3:1.3.0-rc01
Material Compose component used: ModalBottomSheet
Android Studio Build: 2024.1.1 Patch 2
Kotlin version: 1.9.0
Steps to Reproduce or Code Sample to Reproduce:
Expected behavior:
ModalBottomSheet should not change status bar icon color unless it is expanded into the status bar. Or there should be an option to override it.