Adding padding to the folder content

Change-Id: I88e56ff1aa26282e0167e2599f1b34ee374b705f
This commit is contained in:
Sunny Goyal
2015-05-13 16:01:07 -07:00
parent 358af81ca4
commit 22fc63ee29
3 changed files with 12 additions and 6 deletions

View File

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