diff options
Diffstat (limited to 'res')
-rw-r--r-- | res/layout-sw720dp/market_button.xml | 4 | ||||
-rw-r--r-- | res/layout/apps_customize_pane.xml | 28 | ||||
-rw-r--r-- | res/layout/market_button.xml | 4 | ||||
-rw-r--r-- | res/layout/overflow_menu_button.xml | 4 |
4 files changed, 24 insertions, 16 deletions
diff --git a/res/layout-sw720dp/market_button.xml b/res/layout-sw720dp/market_button.xml index 7eaeafa..632d0c8 100644 --- a/res/layout-sw720dp/market_button.xml +++ b/res/layout-sw720dp/market_button.xml @@ -18,8 +18,8 @@ style="@style/MarketButton" android:onClick="onClickAppMarketButton" android:gravity="center" - android:paddingLeft="32dp" - android:paddingRight="32dp" + android:paddingLeft="8dp" + android:paddingRight="8dp" android:drawablePadding="10dp" android:background="@drawable/tab_widget_indicator_selector" android:text="@string/market" diff --git a/res/layout/apps_customize_pane.xml b/res/layout/apps_customize_pane.xml index bee51d7..507c2b6 100644 --- a/res/layout/apps_customize_pane.xml +++ b/res/layout/apps_customize_pane.xml @@ -40,18 +40,26 @@ android:background="@drawable/tab_unselected_holo" android:tabStripEnabled="false" android:divider="@null" /> - <include - android:id="@+id/overflow_menu_button" - layout="@layout/overflow_menu_button" + <RelativeLayout android:layout_width="wrap_content" android:layout_height="match_parent" - android:layout_gravity="right" /> - <include - android:id="@+id/market_button" - layout="@layout/market_button" - android:layout_width="wrap_content" - android:layout_height="match_parent" - android:layout_gravity="right" /> + android:background="@drawable/tab_unselected_holo" + android:orientation="horizontal" + android:layout_gravity="right"> + <include + android:id="@+id/overflow_menu_button" + layout="@layout/overflow_menu_button" + android:layout_width="wrap_content" + android:layout_height="match_parent" + android:layout_alignParentRight="true" /> + <include + android:id="@+id/market_button" + layout="@layout/market_button" + android:layout_width="wrap_content" + android:layout_height="match_parent" + android:layout_toLeftOf="@id/overflow_menu_button" + android:layout_alignWithParentIfMissing="true" /> + </RelativeLayout> </FrameLayout> <FrameLayout android:id="@android:id/tabcontent" diff --git a/res/layout/market_button.xml b/res/layout/market_button.xml index 41e6ec7..461aec4 100644 --- a/res/layout/market_button.xml +++ b/res/layout/market_button.xml @@ -18,8 +18,8 @@ style="@style/MarketButton" android:onClick="onClickAppMarketButton" android:gravity="center" - android:paddingLeft="16dp" - android:paddingRight="16dp" + android:paddingLeft="5dp" + android:paddingRight="5dp" android:background="@drawable/tab_widget_indicator_selector" android:contentDescription="@string/market" android:shadowColor="@color/workspace_all_apps_and_delete_zone_text_shadow_color" diff --git a/res/layout/overflow_menu_button.xml b/res/layout/overflow_menu_button.xml index 9438cc6..d7b7371 100644 --- a/res/layout/overflow_menu_button.xml +++ b/res/layout/overflow_menu_button.xml @@ -20,8 +20,8 @@ android:onClick="onClickOverflowMenuButton" android:drawableLeft="@drawable/ic_menu_overflow" android:gravity="center" - android:paddingLeft="16dp" - android:paddingRight="16dp" + android:paddingLeft="5dp" + android:paddingRight="5dp" android:background="@drawable/tab_widget_indicator_selector" android:contentDescription="@string/menu" android:shadowColor="@color/workspace_all_apps_and_delete_zone_text_shadow_color" |