problem with making edittext scrollable
there is mentioned that it is not scrollable with singleLine=true.
So i have 2 options:
I check if t
Make your EditText Scrollable like this:
EditText yourEditText = new EditText(context); yourEditText.setScroller(new Scroller(context)); yourEditText.setMaxLines(1); yourEditText.setVerticalScrollBarEnabled(true); yourEditText.setMovementMethod(new ScrollingMovementMethod());