Jetpack compose TextField,有没有办法在编辑文本时显示拖动手柄气泡以移动光标位置?
Jetpack compose TextField, is there a way to show a drag handle bubble to move cursor position when editing text?
在编辑 TextField 时,我想在光标位置显示一个气泡,例如
目前无法做到。
此句柄由 TextFieldCursorHandle
视图表示。
让它出现 state.handleState
must be equal 到 HandleState.Cursor
。
目前此状态 set 仅在点击处理程序内。
所有这些元素都是 private
或 internal
,因此您无法更改此行为。
我建议你 open feature request 撰写问题跟踪器。
在编辑 TextField 时,我想在光标位置显示一个气泡,例如
目前无法做到。
此句柄由 TextFieldCursorHandle
视图表示。
让它出现 state.handleState
must be equal 到 HandleState.Cursor
。
目前此状态 set 仅在点击处理程序内。
所有这些元素都是 private
或 internal
,因此您无法更改此行为。
我建议你 open feature request 撰写问题跟踪器。