Layout tweaks in Launcher

-Removed All apps and Configure toolbar buttons
from Customization Drawer, removed Configure
button from All apps and added Market icon
to All apps
-Changed spacing of CellLayouts when scrolling
-Modified gap spacing in workspace layout
-Made workspace invisible in All apps but touching
the place where the workspace was takes you back
to workspace

Change-Id: I6e2579bfebeb8f1f80fdae07da442f6d399abe33
This commit is contained in:
Adam Lesinski
2010-11-04 16:15:23 -07:00
parent 61033d3d86
commit 6b879f0a58
17 changed files with 242 additions and 127 deletions
@@ -16,6 +16,8 @@
package com.android.launcher2;
import com.android.launcher.R;
import android.content.ComponentName;
import android.content.Context;
import android.graphics.Paint;
@@ -133,11 +135,16 @@ public class ApplicationInfoDropTarget extends ImageView implements DropTarget,
// In that case, this icon is more tightly spaced next to the delete icon so we want
// it to have a smaller drag region. When the new drag&drop system comes in, we'll
// dispatch the drag/drop by calculating what target you're overlapping
final int dragPadding = mManageVisibility ? 50 : 10;
outRect.top -= dragPadding;
outRect.left -= dragPadding;
outRect.bottom += dragPadding;
outRect.right += dragPadding;
final int minPadding = R.dimen.delete_zone_min_padding;
final int maxPadding = R.dimen.delete_zone_max_padding;
final int outerDragPadding =
getResources().getDimensionPixelSize(R.dimen.delete_zone_size);
final int innerDragPadding = getResources().getDimensionPixelSize(
mManageVisibility ? maxPadding : minPadding);
outRect.top -= outerDragPadding;
outRect.left -= innerDragPadding;
outRect.bottom += outerDragPadding;
outRect.right += outerDragPadding;
}
}