Android Question Edittext_TextChange

toby

Well-Known Member
Licensed User
Longtime User
The event allows you to know what the user has typed and validate it if needed.

B4X:
Private Sub EditText1_TextChanged (Old As String, New As String)
'if the user just finishes typing "Hello", the logs below show the difference.
    Log(Old) 'Hell'
    Log(New)'Hello'
End Sub
 
Upvote 0
Top