tes_735,
I just tested the TextBox today. It is sending all of the “began”, “editing”, and “ended” events for me. Also, a TextBox is not editable by default. It is read-only. I just verified that today as well. You do not receive any events from a read-only TextBox.
Also, note that TextBoxes do not support the “submitted” event. This is by design. It was made this way to because the return key needs to create a new line in the multiline TextBox instead of raising a submitted event. Now, while we can add a Done button in Android to indicate that text input is finished, iOS does not have an equivalent. Hence, we intentionally limited it on Android to be consistent on iOS.
Are you absolutely sure that you are not setting the [lua]isEditable[/lua] property to true in your code?
If so, would you mind running a quick test on your end? Open the main.lua file for the sample project “Interface\NativeDisplayObjects” and comment out the [lua]textBox.isEditable=true[/lua] from the code… and then build and run it for your Android device. Tap the “textBox” button in the sample app and then tap on the text box that is created on screen. Is it editable? [import]uid: 32256 topic_id: 30741 reply_id: 124208[/import]