I'm studying Android Studio and I ended up with a problem, and I needed a light.
I made several textView on the screen of my application and when I hit a button I would change the contents of all textViews that are on the screen.
In case I was using findViewById (); and setText (); to change the content of each of them, and is working well.
More in the case are several textview and some of them will receive the same value for example 10 of them will go by the same String and another 3 will receive a different string
Thinking about having multiple textviews that will receive the same string, is there any way to create a kind of clone of it that when it changes the other changes together? to decrease repetitive commands.