John Joe
John Joe

Reputation: 12803

invalidateOptionsMenu() deprecated

In one of my fragment class, I using invalidateOptionsMenu() as below

invalidateOptionsMenu(activity)

but it is deprecated

'invalidateOptionsMenu(Activity!): Boolean' is deprecated. Deprecated in Java

What can be used to replace invalidateOptionsMenu(Activity activity) ?

P/S:This method still can be used, but will it be an issue in future?

Upvotes: 9

Views: 2934

Answers (1)

Ricardo Costeira
Ricardo Costeira

Reputation: 3331

They're deprecating this method in favor of calling invalidateOptionsMenu directly on the Activity (which this method actually does, internally). In order to replace it, you can do something like requireActivity().invalidateOptionsMenu().

Upvotes: 16

Related Questions