oubowu / PinnedSectionItemDecoration

A powerful ItemDecoration for Recyclerview, supports the common layoutmanager.
Apache License 2.0
2.09k stars 218 forks source link

pinned title 设置margin后显示问题 #50

Closed iielse closed 6 years ago

iielse commented 6 years ago

image

我在左边留了点 margin image

这里是透明的。

但是实际效果 22

你看 最左边的数字14.0被遮住了。 应该不会被遮住。 那里应该是透明色,不是白色呀。

vRecycler.addItemDecoration(
                PinnedHeaderItemDecoration.Builder(FoodAdapter.TYPE_TITLE)
                        .setDividerId(R.drawable.transparent)
                        .create())

我的设置方式如上。

oubowu commented 6 years ago

嗯 复现了下 是锁定绘制区域限制了导致后面的item无法绘制 我更新下库 你再看下 是否正常了

oubowu commented 6 years ago

okay 更新到1.2.5问题解决了,你也可以看下我最新提交代码看下是由于什么原因导致的 @iielse