Fixed
Status Update
Comments
za...@gmail.com <za...@gmail.com> #2
when click backspace, we call DeleteSurroundingTextInCodePoints, then the app with textField crash.
简单来说就是按删除按键的时候,调用了DeleteSurroundingTextInCodePoints ,然后,编辑框所在应用竟然崩了,报出了上述堆栈BUG。这么低级的错误不应该发生的。
简单来说就是按删除按键的时候,调用了DeleteSurroundingTextInCodePoints ,然后,编辑框所在应用竟然崩了,报出了上述堆栈BUG。这么低级的错误不应该发生的。
an...@google.com <an...@google.com>
si...@google.com <si...@google.com> #3
Could you please clarify if you are able to reproduce it with soft keyboard or only with the dedicated keyboard attached?
se...@gmail.com <se...@gmail.com> #4
Surely it can be reproduced. This is a bug in the source code, which can be reproduced no matter what the soft keyboard, but another condition is that the soft keyboard calls DeleteSurroundingTextInCodePoints(), regardless of whether there is text in the input box. When the compose framework receives the delete command, it will check the text in the input box. If it finds that the text in the input box does not match the length of the delete command to be deleted, an exception is thrown. Then, the APP crashed. Note that it is not the input method crashed.
--From Google Translate
--From Google Translate
Description
Currently, the
drawText
function is not available for @Composable Canvas. To draw a text, we need to usecanvas.nativeCanvas.drawText
, which is the function from android.graphics.Canvas.java. The drawText function could have similar parameters like drawLine or other functions from @Composable Canvas. for example: fun drawText(text: String, color: Color, position: Offset, alpha: Float = 1.0f) This probably should also have style, size, and other parameters from @Composable Text.