I'm working on an android app and at some point I get a String from a web-service that is pretty big, and the client wants that String (which will be shown in an EditText ) is divided into multiple parts, forming a pagination type (I thought of using a ViewPager to do this navigation).
Well, but the problem is that I do not know how I can do this "breaking the string" based on the size of the screen, without scrolling, or that a word is cut and using as much of the screen as possible. Not to mention that the font size will be customizable too, and the user can increase / decrease the font at any time. And all this handling has to be done dynamically, because this returned String is never the same.
Does anyone have any suggestions?!