Change AppTheme instantly on clicked overflow menu?

54 Views Asked by At

I have to problems:

• When the user taps on the three dots (the overflow menu), I don't want the app to display a menu. Instead I want it to do an action instantly.

• The action should be a change to the AppTheme. So when the user taps on the overflow menu, the app theme changes to dark, if the user taps it again to light, etc.

1

There are 1 best solutions below

0
On

Since it's not a good way or as @David Medenjak said, it might be a different design or bad design (something like out of the rules).

By the way, you can use this for handling that OverflowMenu:

@Override
public boolean onPrepareOptionsMenu(Menu menu) {
   super.onPrepareOptionsMenu(menu);

   if (disableMenu())
      Toast.makeText(this, "Clicked", Toast.LENGTH_SHORT).show();

   return true;
}

And then use the following answer:

https://stackoverflow.com/a/18301723/4409113

Finally, use the following link for checking what the current theme is and at the end, set your theme.

Hope that helps.