A little more specific.
I want to know if it is possible to update a number that is saved in a TextView or if I have to use two TextViews.
What I have atm in the XML-File:
<TextView
android:id="@+id/UpInfo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Upgrade: 0 "/>
Now I want to change the 0 in android:text while the App is running. Is this possible? If yes how?
Thanks in advance