I have an edit text field. The app will add a lot of text to this view. So I want to avoid having to rebuild the whole text of the view again and again. Can I just add text to the end of the current text in the edit text? I thought of using SelectionStart to set the cursor to the end of the text, but I am lacking a method to actually insert the text into the edit field there, like
How do you do this?
Thanks.
Regards,
P.S. I sure don't feel like a "Senior Member", asking these kinds of questions... More like a novice verbose member...
B4X:
et.selectionstart = et.text.length
et.selection.text = moretext_at_the_end ' does not work
Thanks.
Regards,
P.S. I sure don't feel like a "Senior Member", asking these kinds of questions... More like a novice verbose member...
Last edited: