I am new to Android app development, but I am trying to display the score at the end of the game I am making.
I planned to switch to a view using:
setContentView(R.layout.over);
And it seems to work, but I want to display the score.
I defined textView:
<TextView android:text="@+id/TextView02" android:id="@+id/TextView02" android:layout_width="wrap_content" android:layout_height="wrap_content"></TextView>
But I would like to change the text as follows: "Evaluation: (dynamic text from a variable here)." Obviously, I need to somehow refer to this variable or set the text textView before moving on to this view.
Please, help!
source share