I am creating an app in android and I am parsing text. After I parse the text, the text appears fine. However, I don't want all of the text to appear (i.e. all lines to appear together).
Example - Text that appears in app: A Turing machine is a device that manipulates symbols on a strip of tape according to a table of rules.
What I want to show: A Turing machine is a device that manipulates [more...].
So when the user taps on the [more...], the rest of the text will appear in a new window.
How do I incorporate the "[more...]" part?
Thanks =)