summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorWinson Chung <winsonc@google.com>2011-09-13 18:06:43 -0700
committerWinson Chung <winsonc@google.com>2011-09-14 11:31:30 -0700
commitdea74b7d12b0fcd50bfdb4274f9867ba76d75238 (patch)
treec841ba6a7c03e8a61642edd7347f68762f3c177a /src
parent5fae56111e65ed573c59ffab8481faf901655380 (diff)
downloadandroid_packages_apps_Trebuchet-dea74b7d12b0fcd50bfdb4274f9867ba76d75238.tar.gz
android_packages_apps_Trebuchet-dea74b7d12b0fcd50bfdb4274f9867ba76d75238.tar.bz2
android_packages_apps_Trebuchet-dea74b7d12b0fcd50bfdb4274f9867ba76d75238.zip
Updating assets.
Change-Id: Ieab9698bbbe94a3087c9f405c4318f5575e2a842
Diffstat (limited to 'src')
-rw-r--r--src/com/android/launcher2/CellLayout.java8
-rw-r--r--src/com/android/launcher2/Hotseat.java2
-rw-r--r--src/com/android/launcher2/PagedView.java2
-rw-r--r--src/com/android/launcher2/Workspace.java19
4 files changed, 14 insertions, 17 deletions
diff --git a/src/com/android/launcher2/CellLayout.java b/src/com/android/launcher2/CellLayout.java
index 0d80d16e6..c2e48e886 100644
--- a/src/com/android/launcher2/CellLayout.java
+++ b/src/com/android/launcher2/CellLayout.java
@@ -182,13 +182,13 @@ public class CellLayout extends ViewGroup {
final Resources res = getResources();
mNormalBackground = res.getDrawable(R.drawable.homescreen_blue_normal_holo);
- mActiveBackground = res.getDrawable(R.drawable.homescreen_green_normal_holo);
- mActiveGlowBackground = res.getDrawable(R.drawable.homescreen_green_strong_holo);
+ mActiveBackground = res.getDrawable(R.drawable.homescreen_blue_strong_holo);
+ mActiveGlowBackground = res.getDrawable(R.drawable.homescreen_blue_strong_holo);
mNormalBackgroundMini = res.getDrawable(R.drawable.homescreen_small_blue);
mNormalGlowBackgroundMini = res.getDrawable(R.drawable.homescreen_small_blue_strong);
- mActiveBackgroundMini = res.getDrawable(R.drawable.homescreen_small_green);
- mActiveGlowBackgroundMini = res.getDrawable(R.drawable.homescreen_small_green_strong);
+ mActiveBackgroundMini = res.getDrawable(R.drawable.homescreen_small_blue_strong);
+ mActiveGlowBackgroundMini = res.getDrawable(R.drawable.homescreen_small_blue_strong);
mOverScrollLeft = res.getDrawable(R.drawable.overscroll_glow_left);
mOverScrollRight = res.getDrawable(R.drawable.overscroll_glow_right);
mForegroundPadding =
diff --git a/src/com/android/launcher2/Hotseat.java b/src/com/android/launcher2/Hotseat.java
index c53a74377..f6ce05904 100644
--- a/src/com/android/launcher2/Hotseat.java
+++ b/src/com/android/launcher2/Hotseat.java
@@ -100,7 +100,7 @@ public class Hotseat extends FrameLayout {
BubbleTextView allAppsButton = (BubbleTextView)
inflater.inflate(R.layout.application, mContent, false);
allAppsButton.setCompoundDrawablesWithIntrinsicBounds(null,
- context.getResources().getDrawable(R.drawable.apps_hotseat_button), null, null);
+ context.getResources().getDrawable(R.drawable.ic_allapps), null, null);
// allAppsButton.setText(context.getString(R.string.all_apps_button_label));
allAppsButton.setContentDescription(context.getString(R.string.all_apps_button_label));
allAppsButton.setOnClickListener(new View.OnClickListener() {
diff --git a/src/com/android/launcher2/PagedView.java b/src/com/android/launcher2/PagedView.java
index 4fdb198d1..dca4d1448 100644
--- a/src/com/android/launcher2/PagedView.java
+++ b/src/com/android/launcher2/PagedView.java
@@ -1807,7 +1807,7 @@ public abstract class PagedView extends ViewGroup {
* fill its space on the track or not.
*/
protected boolean hasElasticScrollIndicator() {
- return false;
+ return true;
}
private void updateScrollingIndicator() {
diff --git a/src/com/android/launcher2/Workspace.java b/src/com/android/launcher2/Workspace.java
index 71c3af65a..6f952fa8d 100644
--- a/src/com/android/launcher2/Workspace.java
+++ b/src/com/android/launcher2/Workspace.java
@@ -1221,19 +1221,23 @@ public class Workspace extends SmoothPagedView
final int height = getHeight();
final int pageHeight = getChildAt(0).getHeight();
- // This determines the height of the glowing edge: 90% of the page height
- final int padding = (int) ((height - pageHeight) * 0.5f + pageHeight * 0.1f);
+ // Set the height of the outline to be the height of the page
+ final int offset = (height - pageHeight - mPaddingTop - mPaddingBottom) / 2;
+ final int paddingTop = mPaddingTop + offset;
+ final int paddingBottom = mPaddingBottom + offset;
final CellLayout leftPage = (CellLayout) getChildAt(mCurrentPage - 1);
final CellLayout rightPage = (CellLayout) getChildAt(mCurrentPage + 1);
if (leftPage != null && leftPage.getIsDragOverlapping()) {
final Drawable d = getResources().getDrawable(R.drawable.page_hover_left_holo);
- d.setBounds(mScrollX, padding, mScrollX + d.getIntrinsicWidth(), height - padding);
+ d.setBounds(mScrollX, paddingTop, mScrollX + d.getIntrinsicWidth(),
+ height - paddingBottom);
d.draw(canvas);
} else if (rightPage != null && rightPage.getIsDragOverlapping()) {
final Drawable d = getResources().getDrawable(R.drawable.page_hover_right_holo);
- d.setBounds(mScrollX + width - d.getIntrinsicWidth(), padding, mScrollX + width, height - padding);
+ d.setBounds(mScrollX + width - d.getIntrinsicWidth(), paddingTop, mScrollX + width,
+ height - paddingBottom);
d.draw(canvas);
}
}
@@ -3359,13 +3363,6 @@ public class Workspace extends SmoothPagedView
mLauncher.getDragLayer().getLocationInDragLayer(this, loc);
}
- /**
- * Return true because we want the scrolling indicator to stretch to fit the space.
- */
- protected boolean hasElasticScrollIndicator() {
- return true;
- }
-
void showDockDivider(boolean immediately) {
final ViewGroup parent = (ViewGroup) getParent();
final View qsbDivider = (ImageView) (parent.findViewById(R.id.qsb_divider));