lucasr / twoway-view

[DEPRECATED] RecyclerView made simple
5.23k stars 1.02k forks source link

Why are layout managers' many functions private? #212

Open osrl opened 9 years ago

osrl commented 9 years ago

I want to extend your layout and change some functionality, but many of the functions are private. I want to override moveLayoutToPosition and maybe some other functions. What i'm trying to do is move down items which has even index.

osrl commented 9 years ago

Any idea how to do this? screen shot 2015-03-04 at 12 54 09

osrl commented 9 years ago

I did it using viewHolder.itemView.setTranslationY(). But is it the right way?