|
@@ -40,13 +40,14 @@ public class DividerItemDecoration extends RecyclerView.ItemDecoration {
|
|
|
final int left = parent.getPaddingLeft();
|
|
|
final int right = parent.getWidth() - parent.getPaddingRight();
|
|
|
final int childCount = parent.getChildCount();
|
|
|
+ final int dividerHeight = mDivider.getIntrinsicHeight();
|
|
|
|
|
|
for (int i=1; i < childCount; i++) {
|
|
|
final View child = parent.getChildAt(i);
|
|
|
final RecyclerView.LayoutParams params = (RecyclerView.LayoutParams) child.getLayoutParams();
|
|
|
- final int size = mDivider.getIntrinsicHeight();
|
|
|
- final int top = child.getTop() - params.topMargin;
|
|
|
- final int bottom = top + size;
|
|
|
+ final int ty = (int)(child.getTranslationY() + 0.5f);
|
|
|
+ final int top = child.getTop() - params.topMargin + ty;
|
|
|
+ final int bottom = top + dividerHeight;
|
|
|
mDivider.setBounds(left, top, right, bottom);
|
|
|
mDivider.draw(c);
|
|
|
}
|