I have a main Activity: MainMenu
And Fragment: Settings
How can I change the color of something in MainMenu from Settings
PS color is XML that is bound to MainMenu
From the fragment you can contact the activity through the following structure:
((MainMenu)getActivity()) To change an item, refer to it like this.
((MainMenu)getActivity()).someElement.setColor(red); Source: https://ru.stackoverflow.com/questions/931686/
All Articles