I'm developing an application for Android , what my application does is just show ListViews
with information (Approximately 100 items). This information will always be the same and will never change. What I want to know is: What is the best way to store this information? To have everything in a database? Or Type all this information in Java
code?
In the case of the first option, how do I configure SQLite
so that the application installs with the information already loaded?