Is there a way of specifying the maximum numbers of lines for an EditText? By that I mean all the lines of text, not only the visible ones (as the android
EditText
the android
You could use this:
android:singleLine="false" android:lines="5"
I don't know if that does what you need.