Merge "Adding padding to the folder content" into ub-launcher3-burnaby

This commit is contained in:
Sunny Goyal
2015-05-15 02:21:59 +00:00
committed by Android (Google) Code Review
3 changed files with 12 additions and 6 deletions

View File

@@ -912,7 +912,8 @@ public abstract class PagedView extends ViewGroup implements ViewGroup.OnHierarc
pageGap = getPaddingRight();
}
childLeft += childWidth + pageGap;
childLeft += childWidth + pageGap
+ (lp.isFullScreenPage ? 0 : (getPaddingLeft() + getPaddingRight()));
}
}