I have a multi-line EditText:

<EditText android:layout_gravity="center" android:id="@+id/txtMessage"
android:layout_height="wrap_content" android:layout_below="@+id/lblMessage"
android:layout_width="wrap_content" android:width="250dip"
android:text="" android:maxLength="760" android:lines="4"></EditText>

How do I vertically align the text to the top. Now the content is aligned to the middle. And I'd like to have the content aligned to the top like this:

vertically aligned text example

Is there a property to do that? Or any other way? I haven't been able to find it.

Thanks! :)

link|improve this question
feedback

2 Answers

up vote 22 down vote accepted

Try this: android:gravity="top"

 <EditText android:layout_gravity="center"  
              android:id="@+id/txtMessage"
              android:layout_height="wrap_content" 
              android:layout_below="@+id/lblMessage"
              android:layout_width="wrap_content" 
              android:width="250dip"
              android:text="hello" 
              android:maxLength="760"
   android:gravity="top"                       
              android:lines="4"></EditText>


so android:gravity="top" sets the text at the "Top" Position. You can also set different android:gravity attribute value such as center, bottom, center_vertical, left, right, center_horizontal, etc.

Enjoy !!

link|improve this answer
1  
Worked great, thanks! – BikeCurious Jul 11 '10 at 8:21
feedback

Try

android:gravity="top"
link|improve this answer
Thanks! It worked... – BikeCurious Jul 11 '10 at 8:22
feedback

protected by Shoban Feb 16 at 11:39

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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