I have searched but cant find a solution to my problem. What I need to do is set a random theme and then have all other views adopt this theme. The randomising of the theme isn't the problem, I know it's woking. Whats the issue is refreshing the views already in the stack.
I call
int theme = Constants.THEMES[randomInt];
setTheme(theme);
in an activity somewhere in the stack and then call invalidate() on that activity. Nothing happens in that activity but when I go to other activities the new theme applies.
Also when I go 'back' to my mainActivity I can't figure out how to get the View to redraw.
I'm calling
@Override
protected void onResume() {
super.onResume();
if(refreshNeeded){
getWindow().getDecorView().findViewById(
android.R.id.content).getRootView().invalidate();
}
}
but nothing again. I cant figure out how to get it to redraw with the new theme.
Am I missing something obvious?
