BarryW Active Member Licensed User Longtime User Mar 1, 2015 #1 Hi masters. Is there any way how to scroll edittext to bottom thru codes? Tnx...
Erel B4X founder Staff member Licensed User Longtime User Mar 1, 2015 #2 Yes: B4X: sv.ScrollToNow(sv.Panel.Height) Upvote 0
BarryW Active Member Licensed User Longtime User Mar 1, 2015 #3 I have an multiline edittext that displays my text and if its full it automatically goes to the first line. My problem is I want my edittext to go down to the last line not on the first line. I have no scrollview on my layout only edittext... Tnx Upvote 0
I have an multiline edittext that displays my text and if its full it automatically goes to the first line. My problem is I want my edittext to go down to the last line not on the first line. I have no scrollview on my layout only edittext... Tnx
klaus Expert Licensed User Longtime User Mar 1, 2015 #4 EditText1.SelectionStart = EditText1.Text.Length Upvote 0