添加到BlackBerry中的VerticalFieldManager后,自定义管理器无法正确呈现

时间:2012-12-05 12:15:04

标签: java blackberry

我有一个VerticalFieldManager渲染一个白色圆角矩形。

这是代码:

 VerticalFieldManager _vfmBackground = new VerticalFieldManager(Manager.NO_VERTICAL_SCROLL | 
                Manager.NO_VERTICAL_SCROLLBAR | Manager.USE_ALL_WIDTH){
             public void paint(Graphics graphics)
                {
                    graphics.clear();
                    graphics.setColor(Color.WHITE);
                    graphics.fillRoundRect(10, 10,460, 400, 25,25 );
                    super.paint(graphics);
                }

              protected void sublayout(int maxWidth, int maxHeight)
                {
                    int displayWidth = (Display.getWidth());
                    int displayHeight = (Display.getHeight());

                    super.sublayout( displayWidth, displayHeight);
                    setExtent( displayWidth, displayHeight);
                }

        };

然后我创建一个名为BaseHeaderBlueScreen的自定义Manager类,它呈现一个蓝色矩形:

public void paint(Graphics graphics)
    {
     graphics.clear();
     graphics.setColor(610212);
     graphics.fillRect(20, 0, Display.getWidth(), Display.getHeight());
     super.paint(graphics);
    }

    protected void sublayout(int maxWidth, int maxHeight)
    {
        int displayWidth = (Display.getWidth()-40);
        int displayHeight = ((Display.getHeight()/2))-90;

        super.setExtent( displayWidth, displayHeight);
    }   

最后,我将自定义管理器添加到具有白色圆角矩形的VerticalFieldManager:

BaseHeaderBlueScreen _vhbs = new BaseHeaderBlueScreen(textTop, textBottom, 0);
        _vhbs.setPadding(20,30,0,0);
        _vfmBackground.add(_vhbs);

这是蓝色矩形在白色矩形中的显示方式。

enter image description here

但这是当前显示蓝色矩形的方式(请注意左侧的灰色空间):

enter image description here

如何完全按照需要渲染蓝色矩形(没有左边的灰色边框)?

1 个答案:

答案 0 :(得分:1)

我认为你只是在不必要地打电话给Graphics.clear()clear()旨在用当前设置为背景颜色的任何颜色填充图形区域。通常,您可以像这样使用clear()

public void paint(Graphics g) {
    g.setBackgroundColor(Color.GRAY);
    // calling clear makes the background gray
    g.clear();

    // now draw some text
    g.setColor(Color.WHITE);
    g.drawText("hello", 20, 40);
}

来自API docs for clear()

  

将整个图形区域清除为当前背景颜色。请注意,在这种情况下不应用全局alpha。

但是,在拨打任何其他电话之前,您正在呼叫clear()

所以,只需删除对clear()的两次调用(尽管导致此特定问题的是BaseHeaderBlueScreen.paint()中的调用)。