I set an original TextView value like this:
TextView problemName = (TextView) findViewById(R.id.some_variable);
But at some point I need to reset it to something new. I don’t see a function like setText() or anything like that. How is the displayed text supposed to be reset?
Thanks!
There is a setText method for TextView.