문제

I'd like to dynamically change the text of a Command depending on some state, so normally I went to Google and LWUIT blogs said that using refreshTheme() on MenuBar should do the trick. So I used the following code, but it sadly didn't work

if (isPlaying) {
          playButton.setCommandName("Pause");
}else{
          playButton.setCommandName("Play");
}
this.getMenuBar().refreshTheme();

Is there something wrong with my code? Or did I misunderstand something?

도움이 되었습니까?

해결책

It won't refresh. The text of the button is set when the command is placed so you can't do that.

You will need to use removeCommand(cmd) followed by addCommand(newCmd).

Furthermore, refreshTheme() has absolutely nothing to do with anything.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top