Search code examples
androidandroid-viewpagerviewflipper

ViewPager or ViewFlipper or something else for unlimited set of data?


My source of data can me give unlimited set of data (it's like days in calendar). I have to show each item separately on screen (one item at a time). For each item I have to make query into my data source. I don't know which approach will be better ViewPager (how handle in adapter unlimited count?) or ViewFlipper? Or maybe there is a third solution (the best one).

Can you put some links to examples. :)


Solution

  • If you are only showing 1 item at a time, use ViewPager

    If you want to show multiple items on the same page, use RecyclerView.

    For calendar, it seems more close to ViewPager