I want to restrict the edittext entry to a single line but When I m adding the line android:singleline = "true" hint is dissappearing and after entering 26 charecters in edittext cursor is coming down. how to solve this? any Idea?

Thanks...!

This is my xml code

   <EditText android:layout_marginLeft="128dp" 
            android:layout_marginTop="90dp"   android:background="@drawable/edittxtborder"
            android:id="@+id/reglastname" android:layout_width="163dp" android:singleLine="true"
            android:gravity="center" android:layout_height="31dp" android:hint="@string/reglname"
            android:textSize="12dp" android:layout_alignParentLeft="true"></EditText>
link|improve this question

I want my edittext to take only single line – Raghav Aug 2 '11 at 8:57
have you seen this question stackoverflow.com/questions/4871152/… – Ricky Aug 2 '11 at 9:24
feedback

2 Answers

up vote 3 down vote accepted

add this code in your edittext xml code.

android:ellipsize="end"

this will work.

link|improve this answer
Thanks, but after entering the text if I press enter the cursor shd not come down to second line in same edittext. its happening here. Edittext shd take only single line – Raghav Aug 2 '11 at 8:50
check again it won't create a new line. – Ilango J Aug 2 '11 at 9:05
Thanks again, after entering 26 charecters its coming down. can we restrict it? – Raghav Aug 2 '11 at 9:19
where you are running this to device or emulator and which version – Ilango J Aug 2 '11 at 9:24
emulator and version is 2.2, let me check in device – Raghav Aug 2 '11 at 9:26
show 8 more comments
feedback

I checked your code and the problem is with android:gravity="center". Change it to android:gravity="left" and you will be able to see the hint.

link|improve this answer
Thanks , The Problem is not with hint actually I can do something to show the hint but I dont want the cursor to come down to second line in the same edittext field , edittext shd take only single line not multiple – Raghav Aug 2 '11 at 8:52
yes it is still taking single line not multiple line..... The cursor will be on single line.... – Vineet Shukla Aug 2 '11 at 9:11
feedback

Your Answer

 
or
required, but never shown

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