Merge "Stop the holo tabs from sqeezing in to each other."

This commit is contained in:
Dianne Hackborn
2011-06-20 17:48:03 -07:00
committed by Android (Google) Code Review

View File

@@ -15,17 +15,17 @@
-->
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="0dp"
android:layout_width="wrap_content"
android:layout_height="58dp"
android:layout_weight="1"
android:layout_marginLeft="-3dip"
android:layout_marginRight="-3dip"
android:layout_weight="0"
android:paddingBottom="8dp"
android:background="@android:drawable/tab_indicator_holo">
<ImageView android:id="@+id/icon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingLeft="3dp"
android:paddingRight="3dp"
android:layout_centerHorizontal="true" />
<TextView android:id="@+id/title"
@@ -33,6 +33,8 @@
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:paddingLeft="3dp"
android:paddingRight="3dp"
style="?android:attr/tabWidgetStyle" />
</RelativeLayout>