editText not centering

Posted by Will Nasby on Stack Overflow See other posts from Stack Overflow or by Will Nasby
Published on 2013-10-18T15:50:39Z Indexed on 2013/10/18 15:53 UTC
Read the original article Hit count: 137

Filed under:
|

I have a large editText that no matter what I try, won't center. I have tried putting it in a horizontal and vertical linear layout and then setting that gravity to center because setting the imageText's gravity to center, it still hugs the left of my activity.

<EditText
        android:id="@+id/editText1"
        android:layout_width="250dp"
        android:layout_height="wrap_content"
        android:ems="10"
        android:gravity="center"
        android:lines="8"
        android:maxLines="8"
        android:minLines="8" >

    </EditText>

And here is what it is doing:

enter image description here

© Stack Overflow or respective owner

Related posts about android

Related posts about Xml