ebarrenechea / header-decor

A couple of sticky header decorations for android's recycler view.
Apache License 2.0
878 stars 159 forks source link

Use getMeasuredWidth() and -Height() for measuring header #49

Closed shaacker closed 8 years ago

shaacker commented 8 years ago

The RecyclerView itself is sometimes not laid out properly, so getWidth() will return 0. Using getMeasuredWidth instead will return the proper size, so the headers will be laid out properly and show up. Fixes https://github.com/edubarr/header-decor/issues/45

ebarrenechea commented 8 years ago

Nice catch and thanks for the contribution! 👍