Is it a good idea to save user generated values in a .xml file in the res values folder?
The values look like “Aircraft”, “Type”, “Note” in one row. Is it even possible to save Values there while runtime and is it possible to save there a multi-part value?
I just want to know, what’s the most recommended way to save a three part value, to show it in a Table (table layout).
First of all android .apk file is read only so you can’t store values in
/resdirectory at runtime..You an store these values in
Shared Preferences, Xml file and then it ininternal storageorsdcardand inSQLite database..Now you have a multi-part values, and you want to display it as a table layout format, So I think SQLite database is useful for it..
Now choice is yours..