标签: codenameone
我们使用Codename开发了app,因为我们需要在点击它时更改FontImage.Material_Icons的颜色。
答案 0 :(得分:1)
假设您正在使用uint,例如
uint
Button
然后,您可以使用 Button btn = new Button("My Button"); btn.setIcon(myFontIcon); 方法提供按下按钮时显示的备用图标。所以你会:
Button btn = new Button("My Button"); btn.setIcon(myFontIcon);
setPressedIcon()