vote up 1 vote down star

I'm trying to center a View vertically on screen with the following layout:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
	android:orientation="vertical"
	android:layout_width="fill_parent"
	android:layout_height="fill_parent" >
	<EditText 
		android:text="example text"  
		android:layout_width="wrap_content" 
		android:layout_height="wrap_content"
		android:layout_gravity="center_vertical" />
</LinearLayout>

However it doesn't work. The EditText is still at the top of the screen. Can someone explain what I'm doing wrong here?

NOTE: if I add center_horizontal to the layout_gravity attribute then it centers it horizontally, but still does not center vertically.

UPDATE: using android:gravity="center_vertical" on the parent worked. I still don't understand why android:layout_gravity="center_vertical" on the child didn't work.

flag

65% accept rate

1 Answer

vote up 0 vote down check

I track the answer on Google groups, here it is © Romain Guy :

Well, first of all RelativeLayout ignores layout_gravity. Then you need to know that gravity means "apply gravity to the content of this view" whereas layout_gravity means "apply gravity to this view within its parent." So on a TextView, gravity will align the text within the bounds of the TextView whereas layout_gravity will align the TextView within the bounds of its parent.

link|flag
That doesn't seem to conflict with what I'm saying above (especially in the "UPDATE"), but it doesn't work right. – fiXedd Nov 6 at 7:41

Your Answer

Get an OpenID
or

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