I am having trouble changing the text inside my textview. I want to have the textview contain the string "foo \n bar \n foo2 \n bar2" and I want to be able to add and take away lines from the textview. I can manually type in "foo \n bar" in the android:text, but I would like to edit it from my class file and append items added from an ArrayList of Strings.
It want's to take in a CharSequence, but converting from String to CharSequence doesn't seem to make it very happy.