I've a problem centering a text in an already centered TextView:
That's the layout:
<RelativeLayout>...
<ImageView
android:id="@+id/image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:src="@drawable/w0"
android:layout_margin="10dip"
android:background="@color/green1"
/>
<TextView
android:id="@+id/temperature"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_alignBottom="@id/image"
android:layout_alignTop="@id/image"
android:layout_toRightOf="@id/image"
android:text="15º"
android:textSize="60dip"
style="bold"
android:textColor="@color/blue"
android:gravity="center"
android:layout_marginLeft="7dip"
android:background="@color/green1"
/>
<TextView
android:id="@+id/min_temperature"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignTop="@id/temperature"
android:layout_toRightOf="@id/temperature"
android:text="M 21º"
android:textSize="20dip"
style="bold"
android:textColor="@color/blue"
android:layout_marginLeft="5dip"
android:background="@color/orange1"
/>
<TextView
android:id="@+id/max_temperature"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@id/temperature"
android:layout_toRightOf="@id/temperature"
android:text="m 10º"
android:textSize="20dip"
style="bold"
android:textColor="@color/blue"
android:layout_marginLeft="5dip"
android:background="@color/orange2"
/>
And that's the displayed layout image:

What I don't understand is why the 15º isn't centered in the TextView. The problem is due the TextView's forced center using alignTop and alignBottom but I can't see why it doesn't works. I know I can solve this using some nesting layouts but I prefer to get a solution using only the RelativeLayout or if it isn't possible understand the reason.
Also is there a solution to align the maximum and minimum TextViews with the top and bottom of the 15º text (not the TextView) as there is now.

hierarchyviewer, nothierarchyinspector. – Ted Hopp May 7 '12 at 22:30