Skip to content
Advertisement

How to change menu item text dynamically in Android

I’m trying to change the title of a menu item from outside of the onOptionsItemSelected(MenuItem item) method.

I already do the following;

JavaScript

however I’d like to be able to modify the title of a particular menu item outside of this method.

Advertisement

Answer

As JxDarkAngel suggested, calling this from anywhere in your Activity,

JavaScript

and then overriding:

JavaScript

is a much better choice. I used the answer from https://stackoverflow.com/a/17496503/568197

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement