How to make edittext in Android scrollable?

前端 未结 3 1155
眼角桃花
眼角桃花 2020-12-05 23:31

I am creating a dynamic layout that contains an edit text. I want to make this edit text scrollable.

questionEntry.setMaxLines(1);
questionEntry.setVerticalS         


        
3条回答
  •  无人及你
    2020-12-05 23:53

    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.

提交回复
热议问题