Shay Well-Known Member Licensed User Longtime User Jul 27, 2013 #1 Hi I have EditText that I am automatically adding to it text I need once text is more than visible, it will auto scroll down so I can see new text how do I do that? thanks
Hi I have EditText that I am automatically adding to it text I need once text is more than visible, it will auto scroll down so I can see new text how do I do that? thanks
specci48 Well-Known Member Licensed User Longtime User Jul 28, 2013 #2 Helo Shay, you can set the SelectionStart (cursorposition) to the last position of the text, so the bottom of the text comes visible: B4X: EditText1.SelectionStart = EditText1.Text.Length - 1 Regards specci48 Upvote 0
Helo Shay, you can set the SelectionStart (cursorposition) to the last position of the text, so the bottom of the text comes visible: B4X: EditText1.SelectionStart = EditText1.Text.Length - 1 Regards specci48
Shay Well-Known Member Licensed User Longtime User Jul 28, 2013 #3 Thanks it is working great Upvote 0