Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
restrict edittext to single line

I have 2 edit texts. My problem is, when I press the enter button in the keyboard, it creates another set of line. Or it creates like a next line in my edit text. I want to remove it and I want it to be in single line. Even if I enter the enter key in the keyboard, still it won't create a next line.

How do you do it?

share|improve this question
1  
android:line="1" or android:singleLine="true" in your EditText's attribute. – user370305 Jan 29 at 6:32
Related – RKN Jan 29 at 6:34
did you try yourEditText.setSingleLine(true); in the code or android:singleLine="true" in the xml ? – Shaista Naaz Jan 29 at 6:37
thanks to you all :) – Ms. B Jan 29 at 6:37
@ShaistaNaaz yes I did that already. Was answered by the person above and below. Sorry for this noob question. I am just a beginner. – Ms. B Jan 29 at 6:39

marked as duplicate by Bill the Lizard Jan 29 at 13:23

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

Try this in your EditText xml

android:singleLine="true"
share|improve this answer
thanks. it worked fine. :) – Ms. B Jan 29 at 6:36
No problem, you are welcome. =) – IssacZH. Jan 29 at 6:48
 <EditText
    android:id="@+id/edittextView1"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:maxLines="1"
    android:singleLine="true"/>

Try this with your edit text in layout

share|improve this answer

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