I want to have 5 line in height text area following code i am using.

<EditText android:layout_width="fill_parent"
            android:layout_height="wrap_content" android:gravity="center"
            android:singleLine="false" android:lines="5"
            android:layout_marginLeft="10dip" android:layout_marginRight="10dip"
            />

text area looks fine but problem is cursor is blinking in the middle of the text field i want it to blink at first line first char of the text field.

link|improve this question

3  
try to remove your gravity "center", might be the problem – Sephy Mar 15 '10 at 11:11
feedback

5 Answers

up vote 116 down vote accepted

Use android:gravity="top"

link|improve this answer
feedback

This is way i used and its working fine too. Hope, this would help somebody.

<EditText android:id="@+id/EditText02"
android:layout_width="wrap_content" android:layout_height="wrap_content"
android:lines="5" android:gravity="top|left" android:inputType="textMultiLine"
android:scrollHorizontally="false" 
android:minWidth="10.0dip"
android:maxWidth="5.0dip"/>

Thanks.

link|improve this answer
Thanks alot.... – Tanu Mar 19 at 10:36
feedback
<EditText android:id="@+id/EditText02" android:layout_width="120dp"
    android:layout_height="wrap_content" android:lines="5" android:layout_centerInParent="true"
    android:gravity="top|left" android:inputType="textMultiLine"
    android:scrollHorizontally="false" android:minWidth="10.0dip"
    android:maxWidth="180dip" />

it will work

link|improve this answer
feedback

Use this:

android:gravity="top"

or

android:gravity="top|left"
link|improve this answer
feedback

I think you can use layout:weight = 5 instead android:lines = 5 because when you port your app to smaller device - it does it nicely.. well, both attributes will accomplish your job..

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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