Android EditText Vertical Scrolling Problem

后端 未结 5 1710
猫巷女王i
猫巷女王i 2020-12-06 03:20

I\'m using an EditText of some predefined size, however when a user enters more text then fits in the text box, they aren\'t able to scroll the text with touch. Scrolling do

5条回答
  •  醉梦人生
    2020-12-06 03:32

    make the changes like the following to get scroller in your EditText

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

    How to make edittext in Android scrollable?

    Donot forget to vote if you feel my response is helpful for you

    Thanks Deepak

提交回复
热议问题