I am creating a dynamic layout that contains an edit text. I want to make this edit text scrollable.
questionEntry.setMaxLines(1);
questionEntry.setVerticalScrollBarEnabled(true);
questionEntry.setMovementMethod(new ScrollingMovementMethod());
Using this code I made my edit text scrollable. But the problem is when I am typing something. If it reaches the end of the edit text, it will stop typing my text and not automatically jump to the next line. If I press the enter key, it will jump. I want to make it automatic.
i made some changes in my previous code.
above posted is my new code.
it s working...thanks for all
I know this question has already got an answer, but if you wish to get the same result via XML, change
to
for a vertically scrollable EditText.
Try this, Hope it Helps