How can I apply the Theme without restarting the whole App? If I do it with startActivity(getIntent()); finish(); the Activity quits and dont restart. Is it possible to simply restart / recreate the Activity to apply the theme?
How can I apply the Theme without restarting the whole App? If I do
Share
It is in the incorrect order.
This is the correct order.
Theme can be set before
super.onCreate(savedInstanceState);is being called. You need to destroy the activity and create it again and call immediatelysetTheme(THEME);in onCreate()