请帮助,我正在尝试设置IMenuItem的文本,这是我的代码:
cantidadUnoItem = new ScaleMenuItemDecorator(new TextMenuItem(7,resourcesManager.cantidadUnoFont,cantUno,vbom),1.2f,1);
在“cantUno"存储文本,当您单击MenuItem时,该变量会更新,但文本不会在MenuItem上更新。
例如,在单击MenuItem之前,我的代码显示:
cantidadUnoItem = new ScaleMenuItemDecorator(new TextMenuItem(7,resourcesManager.cantidadUnoFont,“ON”,vbom),1.2f,1);
点击后:
cantidadUnoItem = new ScaleMenuItemDecorator(new TextMenuItem(7,resourcesManager.cantidadUnoFont,“OFF”,vbom),1.2f,1);
在Text类型的变量中可以使用以下代码:
var.setText("新&#34);
但我看不到该值出现在MenuItem中。
英语不是我的主要语言,请随时使用评论要求澄清。