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?
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()
.
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