When I have multiple colors, strings and drawables that are constantly reused throughout the whole application, what is the term for this to describe it?
Is this called inheritance?
When I have multiple colors, strings and drawables that are constantly reused throughout the whole application, what is the term for this to describe it?
Is this called inheritance?
These would be called
constants
Since their value is unchanging. These would typically be public static final
fields.
Inheritance is completely different, and you can read more here