I have some Views in my Activity that I inflate and populate at runtime.
The View itself is a RelativeLayout to which I add at runtime several TextViews.
When the View is selected I change the color of the background (and that is easy).
Now I need to change the color of all the TextViews inside the View.
Please how do I do that?
Consider that I do not have a reference to the TextViews themselves, since they are created at runtime, nor do I know how many are in there.