Is it possible to create a ebook that can be flipped horizontally by touching? Like an ordinary book.
Maybe you can use ViewFlipper.
1 Like
Thanks for the idea, but before the text needs to be cut into components. Letβs say these are screens, but they are different in size. What is the principle of splitting the text?
Split at spaces to get a list of words.
Specify a number of words to be shown on one page and use a responsive layout extension to keep it uniform across all devices.
Now, dynamically create vertical arrangement to create page and add a label to it.
Slice the words list according to page.
1 Like
Thatβs really great, thanks!
1 Like