I am creating a dynamic layout that contains an edit text. I want to make this edit text scrollable.
questionEntry.setMaxLines(1); questionEntry.setVerticalS
I know this question has already got an answer, but if you wish to get the same result via XML, change
android:inputType="text"
to
android:inputType="textMultiLine"
for a vertically scrollable EditText.