I am working on a project for Android (I'm currently using Android Studio, coding in Java) that requires a large amount of very long strings to be loaded dynamically in some TextViews. It's a sort of book, with each string being a page.
I was considering two options to achieve this:
Use some .txt assets and read them at runtime (but I don't know how much this could affect performance)
Save every page inside a string resource.
Could you tell me what do you think is best practice, and why?