How do I move the cursor to the end of the entered text in the B4XFloatTextField?
If in B4XFloatTextField I replace some character the cursor is wrapped to the beginning of the input line. How do I move it to the end of the line?
Sub B4XFloatTextField1_TextChanged (Old As String, New As String)
Dim et As EditText = B4XFloatTextField1.TextField
et.SelectionStart=et.Text.Length
End Sub