You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to implement TexView and submit it by pressing return button. However instead of submitting cursor goes to new line and doesn't do anything else. I have tried all examples i could found online, i also install this examples app and noticed that it is the same behaviour.
I added alert() :
submit(args) {
alert("Submit Text: " + this.tvtext);
let textview: TextView = <TextView>args.object;
if (isAndroid) {
textview.android.clearFocus();
}
}
But nothing is alerted after return(Send) button is clicked. Does anyone have idea what could be wrong? Thank you in advance.