Status Update
Comments
ma...@google.com <ma...@google.com>
sg...@google.com <sg...@google.com> #2
I have the same problem. I hope this issue gets resolved quickly.
ro...@veeva.com <ro...@veeva.com> #3
I'm having the same problem, which makes this a dealbreaker for using it unfortunately.
ro...@veeva.com <ro...@veeva.com> #4
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.
di...@google.com <di...@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(/* ... */)
}
ro...@veeva.com <ro...@veeva.com> #6
di...@google.com <di...@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.
da...@bulder.no <da...@bulder.no> #8
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
ar...@fara.no <ar...@fara.no> #9
sg...@google.com <sg...@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.
se...@google.com <se...@google.com> #13
The following release(s) address this bug.It is possible this bug has only been partially addressed:
androidx.compose.material3:material3-android:1.2.0-alpha02
ch...@google.com <ch...@google.com> #14
se...@google.com <se...@google.com> #15
Overlapping with System Navigation Button:
Version 1.1.0 effectively resolves the issue of the BottomSheet overlapping with the system navigation button.
However, in versions above 1.1.0, including 1.2 alpha2, the BottomSheet reintroduces the problem of overlapping with the system navigation button.
TextField Click Behavior and Keyboard Activation:
The keyboard activation works fine in higher versions (1.2 alpha-2). However, the primary concern remains with the overlapping issue in these higher versions, which requires attention.
Seeking a comprehensive fix that addresses the overlapping with the system navigation button in higher versions, while acknowledging the keyboard activation improvement. Your attention to this matter would be highly appreciated.
an...@google.com <an...@google.com> #16
Hi Christian, connecting to you as I believe you are currently looking into the 360dp width layouts. Please feel free to re-assign or reach out if there's anything I can do to help. Thank you!
ch...@google.com <ch...@google.com> #17
We are currently working on general layout updates to the date picker, as we will most likely need to support screen width up to 320dp.
Please stay tuned.
we...@nl.abnamro.com <we...@nl.abnamro.com> #18
ch...@google.com <ch...@google.com> #19
Work on this is happening right now. Adding
ch...@google.com <ch...@google.com> #20
Eng is currently tackling this issue with
Description
Jetpack Compose version: 1.5.0-alpha02
Jetpack Compose component used: androidx.compose.material3
Android Studio Build: Android Studio Electric Eel | 2022.1.1 Patch 2
Kotlin version: 1.8.10
The
DatePickerDialog
has a fixed width of 360dp, which means that it cannot have any padding on devices with a width of 360dp. This issue is not present in theMaterialDatePicker
from the Material Component library (please refer to the attached screenshots for a comparison).Relevant source code references:https://github.com/androidx/androidx/blob/c830219ac8ec895fd660ed2a3c073ca1a6ebaf88/compose/material3/material3/src/androidMain/kotlin/androidx/compose/material3/DatePickerDialog.android.kt#L83
https://github.com/androidx/androidx/blob/869fe1f6c4151f742cfba5ccd327891dea582ca3/compose/material3/material3/src/commonMain/kotlin/androidx/compose/material3/tokens/DatePickerModalTokens.kt#L29
Steps to Reproduce or Code Sample to Reproduce: