I am working on an Android application that looks like a calendar list, like in Google Calendar.
In particular, I want to have an effect when the user scrolls the view of the list of events on the right, the list of dates on the left will move up when the next day arrives. Learn how Google Calendar works.
I found several libraries that affect a sticky title like Instagram.
For instance,
https://github.com/emilsjolander/StickyScrollViewItems
https://github.com/DWorkS/AStickyHeader
https://github.com/emilsjolander/StickyListHeaders
https://github.com/TonicArtos/StickyGridHeaders
http://applidium.imtqy.com/HeaderListView/
However, they all actually implement them as Instagram, i.e. section heading goes through the entire line, individual elements below. This is not like Google Calendar, the left column is sticky and the right one scrolls.
I could not find a way to change the library with which I am using HeaderListView. The title and the list and the actual list. I could not split them left and right to achieve the effect of Google Calendar.
Does anyone know if there is any other library that can work like Google Calendar? Or any hint on how I can develop it from scratch?
Thanks.
source share