I have a TextView
in MainActivity
, I would like to change the TextView
text within another class.
How can I access TextView
in MainActivity
from another class?
I tried the following
TextView textView = (TextView) findViewById(R.id.myTextView);
textView.setText("Text");
But the app crashes when calling setText()