I have a ListView in android in which each row contains year from 2000 to 2014. I want a functionality such that, when user pinch zoom on an year, this view should convert to a ListView, which contains detail related to that year only.
For example, when I pinch zoom on 2012, this listview of year should convert to a another Listview which contains month of 2012, in which I ate pizzas :).
EDIT: More Detail-- I have a day-wise record of user's activity. I want to show this detail as yearly view. In yearly view, listview should show total number of activities in that year. Also when user pinch zoom that year, it will take you to monthly view of that year and a ListView contains total user's activity in each month
Is there any way to do that? Any nudge would be appreciated.