Allow multi-line in EditText view in Android?

前端 未结 15 1715
既然无缘
既然无缘 2020-11-28 17:40

How to allow multi-line in Android\'s EditText view?

15条回答
  •  遥遥无期
    2020-11-28 18:20

    I learned this from http://www.pcsalt.com/android/edittext-with-single-line-line-wrapping-and-done-action-in-android/, though I don't like the website myself. If you want multiline BUT want to retain the enter button as a post button, set the listview's "horizontally scrolling" to false.

    android:scrollHorizontally="false"

    If it doesn't work in xml, doing it programmatically weirdly works.

    listView.setHorizontallyScrolling(false);

提交回复
热议问题