diff options
author | Andrew Flynn <flynn@google.com> | 2012-02-29 13:33:22 -0800 |
---|---|---|
committer | Andrew Flynn <flynn@google.com> | 2012-02-29 17:30:37 -0800 |
commit | 0dca1ec41479a74f8da080224fa0c7eacab674d6 (patch) | |
tree | bad4a2d319a11c4da938122bd994485a59d0dc2a /res/layout-land | |
parent | 79b79dd57911b9f79d4fb872e70d37ee90b0cc64 (diff) | |
download | packages_apps_trebuchet-0dca1ec41479a74f8da080224fa0c7eacab674d6.zip packages_apps_trebuchet-0dca1ec41479a74f8da080224fa0c7eacab674d6.tar.gz packages_apps_trebuchet-0dca1ec41479a74f8da080224fa0c7eacab674d6.tar.bz2 |
New small/large screen division for Launcher.
Previously the dp division between the two was set at 600dp
(7" tablets). This has now been bumped up to 720dp
(10" tablets).
Change-Id: I1f0419e504fc3bb606156c1cf6fbe03956274184
Diffstat (limited to 'res/layout-land')
-rw-r--r-- | res/layout-land/hotseat.xml | 2 | ||||
-rw-r--r-- | res/layout-land/launcher.xml | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/res/layout-land/hotseat.xml b/res/layout-land/hotseat.xml index c0c87af..6802ea0 100644 --- a/res/layout-land/hotseat.xml +++ b/res/layout-land/hotseat.xml @@ -18,7 +18,7 @@ xmlns:launcher="http://schemas.android.com/apk/res/com.android.launcher" android:background="@drawable/hotseat_bg_panel" launcher:cellCountX="1" - launcher:cellCountY="5"> + launcher:cellCountY="@integer/hotseat_cell_count"> <com.android.launcher2.CellLayout android:id="@+id/layout" android:layout_width="wrap_content" diff --git a/res/layout-land/launcher.xml b/res/layout-land/launcher.xml index c11c788..0c1a195 100644 --- a/res/layout-land/launcher.xml +++ b/res/layout-land/launcher.xml @@ -30,8 +30,8 @@ android:paddingLeft="@dimen/qsb_bar_height" android:paddingRight="@dimen/button_bar_height" launcher:defaultScreen="2" - launcher:cellCountX="4" - launcher:cellCountY="4" + launcher:cellCountX="@integer/cell_count_x" + launcher:cellCountY="@integer/cell_count_y" launcher:pageSpacing="@dimen/workspace_page_spacing" launcher:scrollIndicatorPaddingLeft="@dimen/qsb_bar_height" launcher:scrollIndicatorPaddingRight="@dimen/button_bar_height"> |