diff options
author | Michael Jurka <mikejurka@google.com> | 2010-09-03 14:15:02 -0700 |
---|---|---|
committer | Michael Jurka <mikejurka@google.com> | 2010-09-13 15:16:10 -0700 |
commit | 5f1c509d5ad1954a7e38e77db4d5f27c7345fd39 (patch) | |
tree | 94f434edef0031fe54ae4fa2bbfee518241e982f /res/layout-xlarge-port | |
parent | 686e136f5a1d4e1bb3a69b9b2634fc51221a3245 (diff) | |
download | packages_apps_trebuchet-5f1c509d5ad1954a7e38e77db4d5f27c7345fd39.zip packages_apps_trebuchet-5f1c509d5ad1954a7e38e77db4d5f27c7345fd39.tar.gz packages_apps_trebuchet-5f1c509d5ad1954a7e38e77db4d5f27c7345fd39.tar.bz2 |
supporting swipable home screens on xlarge devices
- icons and widgets on home screens can be "dimmed"
- celllayout no longer renders a dimmed version of itself, but instead its children make dimmed versions of themselves
- celllayout no longer always takes up full size of workspace, in landscape mode
neighboring screens (celllayouts) are visible
- on xlarge devices, in landscape mode side screens are "dimmed"
- moved holographic outline helper to its own file
- fixed bug where mini-screens were still able to scroll left/right
Change-Id: I9e85ab4147edfae1e7525c3d11d42be3fabf4f6d
Diffstat (limited to 'res/layout-xlarge-port')
-rw-r--r-- | res/layout-xlarge-port/workspace_screen.xml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/res/layout-xlarge-port/workspace_screen.xml b/res/layout-xlarge-port/workspace_screen.xml index eb7620c..7314e60 100644 --- a/res/layout-xlarge-port/workspace_screen.xml +++ b/res/layout-xlarge-port/workspace_screen.xml @@ -18,13 +18,13 @@ xmlns:android="http://schemas.android.com/apk/res/android" xmlns:launcher="http://schemas.android.com/apk/res/com.android.launcher" - android:layout_width="match_parent" - android:layout_height="match_parent" + android:layout_width="wrap_content" + android:layout_height="wrap_content" android:hapticFeedbackEnabled="false" launcher:cellWidth="@dimen/workspace_cell_width" launcher:cellHeight="@dimen/workspace_cell_height" - launcher:yAxisStartPadding="172dip" - launcher:yAxisEndPadding="172dip" + launcher:yAxisStartPadding="40dip" + launcher:yAxisEndPadding="40dip" launcher:xAxisStartPadding="40dip" launcher:xAxisEndPadding="40dip"/> |