How to change a TextView’s text by pressing a Button

According to:
http://developer.android.com/reference/android/widget/TextView.html

TextView view = (TextView) findViewById(R.id.counter);
view.setText("Do whatever");

Leave a Comment