Reputation: 17185
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!
Upvotes: 0
Views: 4114
Reputation: 29
Verify if TextView on project set import android.widget.TextView;
android.widget.TextView have setText();
Upvotes: 1
Reputation: 9189
textView.setText() and its overloads provide a way to change the value of the text. If you're looking to reset something else please elaborate in your question.
Upvotes: 2