import android.widget.TextView; final TextView tv = (TextView)findViewById(R.id.txtInfo); tv.setText("You just changed the text"); //to extend this lets update the TextView with the date import java.util.Date; final String currentDateTimeString = java.text.DateFormat.getDateTimeInstance().format(new Date()); tv.setText(currentDateTimeString);