Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
How to change current Theme at runtime in Android

I have an Android application where I allow users to switch between themes at runtime. Switching a theme is easy but the theme isn't applied until the activity is recreated. I found a way to apply the theme to current activity but if the user presses back button previous screens still have the old theme. How can I change theme for those activities? Example of app that supports it: Tasks Free

share|improve this question

marked as duplicate by rds, Peter O., Macmade, 0x499602D2, j0k Jan 20 at 14:59

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

Dynamically at runtime, call setTheme() in your activity's onCreate() method, before calling setContentView(). To change the theme, you simply need to restart your activity.

Please see this file..!

Also Want see this and this ... Hope this helps...!

share|improve this answer
Restarting the activity works for current one but when the user clicks back button previous activities still have old theme. This is because onCreate isn't called when the user goes back so I cannot set theme. – Giorgi Jul 13 '12 at 9:10
You want to set theme permanent then same like live wallpaper make one app then in setting you can add different style..! @Giorgi – Strider Jul 13 '12 at 9:42
1  
This does not answer the question. Restarting activity works for the currently displayed one but how do I apply it to other activities when user clicks back? – Giorgi Jul 19 '12 at 16:09

Just a hint I suppose:

Before finish(); Call

setResult(AnIntegerThatNotifiesThePreviousActivitiesToChangeTheme);

Now in all your Activities, implement onActivityResult

protected void onActivityResult(int request, int result, Intent data) {
    if(result == AnIntegerThatNotifiesThePreviousActivitiesToChangeTheme)
    {
        //update the current theme
    }
}

Another solution (Better):

Implement a class that saves the theme:

public class CurrentThemeHolder {
    private CurrentThemeHolder() {
    }
    private static instance;
    public static getInstance() {
        if(instance == null)
            return new CurrentThemeHolder();
        else
            return instance;
    }
    private int mTheme; //identifier of the theme
    public getTheme() {
        return mTheme;
    }
    public setTheme(int newTheme){
        mTheme = newTheme;
    }
}

Now let all ur activities extend this ThemeActivity:

public class ThemeActivity extends Activity {
    private int mTheme;
    protected void onResume() {
        if(mTheme != CurrentThemeHolder.getInstance().getTheme()) {
            //do what you should do to set the theme
            mTheme = CurrentThemeHolder.getInstance().getTheme();
            //everytime you set the theme save it
            //this maybe should be done in onCreate()
        }
    }
}
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.