<EditText 
    android:id="@+id/editText2" 
    android:layout_height="wrap_content" 
    android:layout_width="fill_parent" 
    android:maxLines="5" 
    android:lines="5">
</EditText>

User can input more than 5 lines, by pressing enter/next row key. How can I limit user input to fixed amount of rows with EditText?

link|improve this question

feedback

3 Answers

up vote 4 down vote accepted

The attribute maxLines corresponds to the maximum height of the EditText, it controls the outer boundaries and not inner text lines.

link|improve this answer
Thats what I thought also... Is there a way to limit the inputed lines or do I have to it on backend code programmatically? – SYLARRR Aug 17 '11 at 14:12
There is no simple way to limit the inputed lines like you want. You'll have to do it manually in your code. – Cedekasme Aug 17 '11 at 14:18
feedback

@Cedekasem you are right, there isn't a built in "row limiter". But I did built one my self, so if anyone is interested the code is below. Cheers.

et.setOnKeyListener(new View.OnKeyListener() {

        @Override
        public boolean onKey(View v, int keyCode, KeyEvent event) {

            // if enter is pressed start calculating
            if (keyCode == KeyEvent.KEYCODE_ENTER
                    && event.getAction() == KeyEvent.ACTION_UP) {

                // get EditText text
                String text = ((EditText) v).getText().toString();

                // find how many rows it cointains
                editTextRowCount = text.split("\\n").length;

                // user has input more than limited - lets do something
                // about that
                if (editTextRowCount >= 7) {

                    // find the last break
                    int lastBreakIndex = text.lastIndexOf("\n");

                    // compose new text
                    String newText = text.substring(0, lastBreakIndex);

                    // add new text - delete old one and append new one
                    // (append because I want the cursor to be at the end)
                    ((EditText) v).setText("");
                    ((EditText) v).append(newText);

                }
            }

            return false;
        }
link|improve this answer
feedback

This does not solve the general issue of limiting to n lines. If you want to limit your EditText to take just 1 line of text, this can be very easy.
You can set this in the xml file.

android:singleLine="true"

or programmatically

editText.setSingleLine(true);
link|improve this answer
but what if you want to limit to 2 rows? or 3? For that you have to build custom row limiter... – SYLARRR Nov 20 '11 at 16:29
I am aware of that. "This does not solve the general issue of limiting to n lines". I ended up reading through the question here while I was trying to limit to 1 line and found an easier solution. I figured others might end up here looking to limit their EditText to 1 line and implement the "custom row limiter". My answer is here for other SO users who end up searching this question for the same reason I did. – Maudicus Nov 20 '11 at 17:57
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.