tags:

views:

261

answers:

1

i want to add the current string in a textview view to a string array in arrays.xml.then display the last/previous string of that array in a textview (setText).

A: 

You cannot modify arrays.xml at runtime -- sorry! You will need to modify an in-memory ArrayList or something instead.

CommonsWare