i have declared a TextView in MainActivity, and i want to update it (write something else or update a value) in another class. for example in Main Activity I have
value = (TextView) findViewById(R.id.value_view);
How can I access this TextView in another class and update the value ?