-1

Is it possible to use ViewPager in some way as an alternative to vertical scrolling of TextViews (or any other similar View) whose content exceeds the size of screen? I do not want to create as many as instance of TextViews because beforehand I wouldnt know where the piece of text ends on a page. I wonder how Amazon kindle app is implemented to work in desired way.

duckduckgo
  • 1,280
  • 1
  • 18
  • 32

1 Answers1

0

ViewPager doesn't design for that certain use.

You can use:

1) Horizontal ListView.

2) Horizontal ScrolView(Add/Remove elements from it as needed).

Use ZoomableTextView with one of 1 or 2,

Community
  • 1
  • 1
Nativ
  • 3,092
  • 6
  • 38
  • 69