There is a way to reuse properties for the different components of the layout, but I do not remember how they were defined and assigned; Can anyone give me an example?
For example, if I have 15 TextView and assign each property android:textSize="35sp"
it is not profitable, since then if I want to change the size I will have to modify all manually, this method allowed to reuse these properties as if they were a variable and then assign them to layout elements.
I remember that it was within the same XML of the layout and not in the "programmatic" part.