我正在开发黑莓应用程序。我想画画面。我已经实现了这个
VerticalFieldManager hfmBg = new VerticalFieldManager(Field.USE_ALL_HEIGHT )
{
protected void paint(Graphics g)
{
g.setBackgroundColor(Color.SILVER);
g.clear();
super.paint(g);
}//end of paint method
};//end of vertical field manager
但告诉我有没有其他方法来绘制整个屏幕?
答案 0 :(得分:0)
您有正确的想法 - 只需将该paint方法放在Screen(MainScreen或FullScreen)类而不是Manager类中。您可能还需要将以下空方法添加到Screen类以覆盖设置默认颜色的主题:
protected void applyTheme() {
}