Android EditText with fixed number of max lines and no scrolling
I would like to create a text input that: 1) Always displays 3 lines 2) Does not allow the user to enter any more text than the available space in the 3 lines 3) Is not scrollable, if users enters text greater than 3 lines. Technically, I allow for the user to enter up to 500 chars for saving to DB, but I am not expecting near this amount of text for the input. So, my usage of maxLength is only precautionary. Here is my current EditText: <EditText android:id="@+id/edit_description" android:layout_width="match_parent" android:layout_height="wrap_content" android:lines="3" android:maxLines="3"