In some methods of my Activity I want to check the title of menu or know if it is checked or not. How can I get Activity's menu. I need something like this.getMenu()
On your Android phone or tablet, go to myactivity.google.com. Scroll down to your activity. Filter your activity. You can filter by both date and product at the same time.
Go to your Google Account. On the left, click Data & privacy. Under "History settings," click an activity or history setting you want to manage. Turn the activity or history setting on or off.
Be wary of invalidateOptionsMenu()
. It recreates the entire menu. This has a lot of overhead and will reset embedded components like the SearchView
. It took me quite a while to track down why my SearchView
would "randomly" close.
I ended up capturing the menu as posted by Dark and then call onPrepareOptionsMenu(Menu)
as necessary. This met my requirement without an nasty side effects. Gotcha: Make sure to do a null check in case you call onPrepareOptionsMenu()
before the menu is created. I did this as below:
private Menu mOptionsMenu; @Override public boolean onCreateOptionsMenu(final Menu menu) { mOptionsMenu = menu ... } private void updateOptionsMenu() { if (mOptionsMenu != null) { onPrepareOptionsMenu(mOptionsMenu); } }
Call invalidateOptionsMenu() instead of passing menu object around.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With