diff options
author | Adam Cohen <adamcohen@google.com> | 2012-04-26 14:56:12 -0700 |
---|---|---|
committer | Adam Cohen <adamcohen@google.com> | 2012-04-26 15:48:08 -0700 |
commit | d5f8c3479a630b12bfa3fbfaedf160f9a7194b00 (patch) | |
tree | 3e952ae9a43570ab3db62ede2dedc45e99715f7c /res/layout | |
parent | 58039d634cb36da561501ccfafc266e1d83d0b4f (diff) | |
download | packages_apps_trebuchet-d5f8c3479a630b12bfa3fbfaedf160f9a7194b00.zip packages_apps_trebuchet-d5f8c3479a630b12bfa3fbfaedf160f9a7194b00.tar.gz packages_apps_trebuchet-d5f8c3479a630b12bfa3fbfaedf160f9a7194b00.tar.bz2 |
Refactoring padding dimens for CellLayouts and Workspace
Change-Id: Ib354b822588717b7bb81b4dcb14c834e5b8d4892
Diffstat (limited to 'res/layout')
-rw-r--r-- | res/layout/workspace_screen.xml | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/res/layout/workspace_screen.xml b/res/layout/workspace_screen.xml index 23e1def..d6e66f6 100644 --- a/res/layout/workspace_screen.xml +++ b/res/layout/workspace_screen.xml @@ -17,16 +17,17 @@ <com.android.launcher2.CellLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:launcher="http://schemas.android.com/apk/res/com.android.launcher" - style="@style/WorkspaceScreen" - android:paddingLeft="@dimen/workspace_left_padding" - android:paddingRight="@dimen/workspace_right_padding" - android:paddingTop="@dimen/workspace_top_padding" - android:paddingBottom="@dimen/workspace_bottom_padding" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:paddingLeft="@dimen/cell_layout_left_padding" + android:paddingRight="@dimen/cell_layout_right_padding" + android:paddingTop="@dimen/cell_layout_top_padding" + android:paddingBottom="@dimen/cell_layout_bottom_padding" android:hapticFeedbackEnabled="false" launcher:cellWidth="@dimen/workspace_cell_width" launcher:cellHeight="@dimen/workspace_cell_height" launcher:widthGap="@dimen/workspace_width_gap" launcher:heightGap="@dimen/workspace_height_gap" - launcher:maxGap="@dimen/workspace_max_gap" /> + launcher:maxGap="@dimen/workspace_max_gap" />
\ No newline at end of file |