eowise / recyclerview-stickyheaders

DEPRECATED. Android library that integrate sticky section headers in your RecyclerView
http://eowise.github.io/recyclerview-stickyheaders
MIT License
961 stars 148 forks source link

Load network imageview in header #29

Open amansatija opened 9 years ago

amansatija commented 9 years ago

I am using your library to create a header which contains imageview whoes image comes from internet url .. for asyncronous image downloading and loading i m using another library glide , which takes imageview as input .

So i have made an adapter that implements StickyHeaderAdapter whoes layout contains the imageview and in onBind function of my adapter I have called the asynchronusly loading Util from glide ,, the util works properly it fecthes the image from network asynchronously and updates the image view however your draw headers function does not draw it ..! the on bind call from the stickyheader is called how ever the image is not displayed...in the header .. how do i do this ,,,!??