A TextView is defined in activity_main.xml and given the id tv. Inside MainActivity.java, write the code to retrieve that TextView and change its text to CHANGED. code example
Example: android java change text value
A text:
TextView myText= (TextView) findViewById(R.id.textview);
myText.setText("Example of Text");
An image:
ImageView image = (ImageView) findViewById(R.id.imageid);
image.setImageResource(R.drawable.imageid2);