Reputation: 83
I have a simple app that consists of a multiline edittext, when I try to enter some large text in the landscape mode the and press enter so that the scroll bar appears.The scroll bar overlaps the text I've entered.
How to shift the scrollbar or limit the no. of characters entered in a line so that the scroll bar doesn't overlap with the text??
Upvotes: 0
Views: 182
Reputation: 36
android:scrollbarStyle="outsideOverlay"
inside the EditText
in your xml will do the trick.
Happy Coding :)
Upvotes: 2
Reputation: 83
Its the framework issue.Hence the edittex of=r the softkeyboard cannot handle this issue.
Upvotes: 0