Basically, I am wondering how when using a RecyclerView, how one can achieve a sort of "animated CollapsingToolbar." Note it's in quotes, because I'm not attached to the solution being a CollapsingToolbar, however that's the closest thing I can find so far to what I want. Basically, I want to make a toolbar that has the title of my app, and a subtitle with some string followed by an int (as a string type). As I scroll up, I want the string to fade off, but have the int remain and move up to the same level as the app title.
I've looked at this solution, however it's dependent on a ListView. I've also looked at this solution, however I can't see how I would be able to customize the animation how I'd like. This repo looks like it could work, but it has a bunch of errors and can't get it to compile.
So basically, to sum it up, I'm looking for how it's possible to animate a toolbar in the way I've described above, with any means you think are best, not necesserily a CollapsingToolbar.