How to make edittext in Android scrollable?

前端 未结 3 1131
眼角桃花
眼角桃花 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:51

    questionEntry.setScroller(new Scroller(myContext)); 
    questionEntry.setMaxLines(1); 
    questionEntry.setVerticalScrollBarEnabled(true); 
    questionEntry.setMovementMethod(new ScrollingMovementMethod()); 
    

    i made some changes in my previous code.
    above posted is my new code.

    it s working...thanks for all

提交回复
热议问题