diff options
author | Adam Powell <adamp@google.com> | 2011-01-21 18:08:51 -0800 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2011-01-21 18:08:51 -0800 |
commit | 3024a5a54f09a1861ee85a5e2785b1cf8a70de39 (patch) | |
tree | 1cd941d3a887e732d2a8152631299292193ee9e7 /core | |
parent | e2ba0dfef1e58a223d3d61fbf742b2d986ea8b1e (diff) | |
parent | 017f6e783edb32375fe41f6a30738d7181ad9dcc (diff) | |
download | frameworks_base-3024a5a54f09a1861ee85a5e2785b1cf8a70de39.zip frameworks_base-3024a5a54f09a1861ee85a5e2785b1cf8a70de39.tar.gz frameworks_base-3024a5a54f09a1861ee85a5e2785b1cf8a70de39.tar.bz2 |
Merge "Fix bug 3374664 - Action bar spacing between tabs, spinners and titles should be 32 dip" into honeycomb
Diffstat (limited to 'core')
-rw-r--r-- | core/res/res/layout/action_bar_title_item.xml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/res/res/layout/action_bar_title_item.xml b/core/res/res/layout/action_bar_title_item.xml index 3864981..0cf4222 100644 --- a/core/res/res/layout/action_bar_title_item.xml +++ b/core/res/res/layout/action_bar_title_item.xml @@ -17,7 +17,8 @@ <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="wrap_content" android:layout_height="wrap_content" - android:orientation="vertical" > + android:orientation="vertical" + android:paddingRight="32dip" > <TextView android:id="@+id/action_bar_title" android:layout_width="wrap_content" android:layout_height="wrap_content" |