diff options
author | Winson Chung <winsonc@google.com> | 2011-08-26 18:12:08 -0700 |
---|---|---|
committer | Winson Chung <winsonc@google.com> | 2011-08-29 14:52:46 -0700 |
commit | 2b8e44577096a737b97c6687fc8ad1f067ea1e89 (patch) | |
tree | 9c97676928fd13b6c410badcbeb6c1f97eb5749a /res/values-land | |
parent | 725a301a7107e43f1995449c5b96d5cb76dbbe8a (diff) | |
download | packages_apps_trebuchet-2b8e44577096a737b97c6687fc8ad1f067ea1e89.zip packages_apps_trebuchet-2b8e44577096a737b97c6687fc8ad1f067ea1e89.tar.gz packages_apps_trebuchet-2b8e44577096a737b97c6687fc8ad1f067ea1e89.tar.bz2 |
Tweaking grid spacing (5162387)
Change-Id: I67ebe3484f504d5f987486c80d4d21db3c2e06e1
Diffstat (limited to 'res/values-land')
-rw-r--r-- | res/values-land/config.xml | 18 | ||||
-rw-r--r-- | res/values-land/dimens.xml | 5 | ||||
-rw-r--r-- | res/values-land/styles.xml | 8 |
3 files changed, 29 insertions, 2 deletions
diff --git a/res/values-land/config.xml b/res/values-land/config.xml index adbc015..2fee8cf 100644 --- a/res/values-land/config.xml +++ b/res/values-land/config.xml @@ -1,5 +1,23 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2011 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + <resources> <!-- Workspace --> <!-- Whether or not the drop targets drop down as opposed to fade in --> <bool name="config_useDropTargetDownTransition">false</bool> + <!-- Whether or not to fade the side pages --> + <bool name="config_workspaceFadeAdjacentScreens">true</bool> </resources> diff --git a/res/values-land/dimens.xml b/res/values-land/dimens.xml index 55a25ec..da42b85 100644 --- a/res/values-land/dimens.xml +++ b/res/values-land/dimens.xml @@ -41,7 +41,10 @@ <dimen name="button_bar_height">68dip</dimen> <!-- Because portal animations go beyond the bounds of an icon, we need to make the dock layout slightly larger than the button_bar_height --> - <dimen name="button_bar_height_padding">8dp</dimen> + <dimen name="button_bar_height_top_padding">8dp</dimen> + <dimen name="button_bar_height_bottom_padding">0dp</dimen> + <dimen name="button_bar_width_left_padding">0dp</dimen> + <dimen name="button_bar_width_right_padding">0dp</dimen> <dimen name="button_bar_height_plus_padding">76dp</dimen> <!-- AppsCustomize --> diff --git a/res/values-land/styles.xml b/res/values-land/styles.xml index 437a511..104da63 100644 --- a/res/values-land/styles.xml +++ b/res/values-land/styles.xml @@ -21,9 +21,15 @@ <!-- Workspace --> <style name="WorkspaceScreen"> <item name="android:layout_width">wrap_content</item> - <item name="android:layout_height">match_parent</item> + <item name="android:layout_height">wrap_content</item> </style> <!-- Search Bar --> + <style name="QSBBar"> + <item name="android:orientation">vertical</item> + <item name="android:layout_width">@dimen/qsb_bar_height</item> + <item name="android:layout_height">match_parent</item> + <item name="android:layout_gravity">left</item> + </style> <style name="SearchDropTargetBar"> <item name="android:orientation">vertical</item> <item name="android:layout_width">match_parent</item> |