Android EditText Vertical Scrolling Problem

后端 未结 5 1716
猫巷女王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:34

    If you would like the text to scroll horizontally, define in your EditText XML tag:

    android:scrollHorizontally="true"
    

    If you would like a vertical scroll, define in your EditText XML tag:

    android:scrollbars = "vertical"
    

    Hope this helped.

提交回复
热议问题