Adding new assets.

Change-Id: I20c8ceae997290781923caf195f6f87e283b1b7f
This commit is contained in:
Winson Chung
2011-06-30 18:09:30 -07:00
parent 3ac74c55cf
commit 967289b6d5
58 changed files with 52 additions and 39 deletions
+2 -2
View File
@@ -1240,11 +1240,11 @@ public class Workspace extends SmoothPagedView
final CellLayout rightPage = (CellLayout) getChildAt(mCurrentPage + 1);
if (leftPage != null && leftPage.getIsDragOverlapping()) {
final Drawable d = getResources().getDrawable(R.drawable.page_hover_left);
final Drawable d = getResources().getDrawable(R.drawable.page_hover_left_holo);
d.setBounds(mScrollX, padding, mScrollX + d.getIntrinsicWidth(), height - padding);
d.draw(canvas);
} else if (rightPage != null && rightPage.getIsDragOverlapping()) {
final Drawable d = getResources().getDrawable(R.drawable.page_hover_right);
final Drawable d = getResources().getDrawable(R.drawable.page_hover_right_holo);
d.setBounds(mScrollX + width - d.getIntrinsicWidth(), padding, mScrollX + width, height - padding);
d.draw(canvas);
}