Bug P2
Status Update
Comments
da...@mullvad.net <da...@mullvad.net> #2
Edit, this seems to happen no matter if `singleLine = true`, shift + enter will also cause the item in the background of the dialog to be pressed.
da...@mullvad.net <da...@mullvad.net> #3
So further clarification on this. I tried several ways of handling this without `singleLine=true` e.g consuming the event in `onPreviewKeyEvent`, `onKeyEvent`, `onPreInterceptKeyBeforeSoftKeyboard` even though I consume the `enter event` in these functions it will still also trigger the click event outside the Dialog and open it again.
da...@mullvad.net <da...@mullvad.net> #4
Only way to avoid the view in the back to get an onclick seems to simulate and interaction with a button or delay the removal of the dialog:
```
// Submit button's interactionSource
val interactionSource: MutableInteractionSource = remember { MutableInteractionSource() }
// TextField
...
onDone = {
val press = PressInteraction.Press(Offset.Zero)
interactionSource.tryEmit(press) interactionSource.tryEmit(PressInteraction.Release(press))
},
...
```
or
```
val scope = rememberCoroutineScope()
// TextField
...
onDone = {
scope.launch {
delay(100)
selectedRow.value = null
}
},
...
```
Haven't found any nice solution to this issue so far.
```
// Submit button's interactionSource
val interactionSource: MutableInteractionSource = remember { MutableInteractionSource() }
// TextField
...
onDone = {
val press = PressInteraction.Press(Offset.Zero)
interactionSource.tryEmit(press) interactionSource.tryEmit(PressInteraction.Release(press))
},
...
```
or
```
val scope = rememberCoroutineScope()
// TextField
...
onDone = {
scope.launch {
delay(100)
selectedRow.value = null
}
},
...
```
Haven't found any nice solution to this issue so far.
pj...@gmail.com <pj...@gmail.com> #5
Para fijar un clip, manténlo presionado. Después de una hora, se borrarán todos los clips que no estén fijados.
kl...@google.com <kl...@google.com> #6
Added some logging, it looks like the dialog gets the ACTION_DOWN
event, but the main window gets the ACTION_UP
event. If I replace the list with Android views, this does not happen.
I think probably Compose's Material Button
should not treat an UP
without a DOWN
as a click.
Or better yet, according to
da...@mullvad.net <da...@mullvad.net> #7
I tested this on the latest version of compose, seems to work correctly now.
Description
TextField with
singleLine = true
does not consume the enter key. It passedimeOptions(singleLine = true)
but IME never consumes the click. This becomes a problem when using a TextField in a dialog since focus is still on a list item in the back. Pressing enter while focusing the TextField will then cause the button in the list view in the background to be pressed again.Here is a snippet with the issue at hand:
I've also attached a recording of the issue, I first navigate with keyboard enter the dialog and focus the TextField, enter some text and then press enter to finish my modification. This causes the dialog to close but also trigger a onClick on the button (named "Row 2") in the background thus causing the dialog to open again. On the second dialog I go to the "Confirm" button and press enter instead, this correctly consumes the press and simply closes the dialog.