Я хочу "исправить" фон, пока прокручивается только ListFields.
Текущая проблема:
![alt text](https://files.getdropbox.com/u/357576/saves/8310-1.png)
Прокрутка вниз (окружающая рамка должна двигаться вместе со списком)
![alt text](https://files.getdropbox.com/u/357576/saves/8310-1-02.png)
Соответствующий код для VerticalFieldManager
VerticalFieldManager _bottom_box = new VerticalFieldManager(Field.FIELD_HCENTER | Field.FIELD_VCENTER | VerticalFieldManager.VERTICAL_SCROLL | Field.USE_ALL_HEIGHT)
{
protected void sublayout(int maxWidth, int maxHeight)
{
super.sublayout(maxWidth, maxHeight);
setExtent(maxWidth - 6, maxHeight - 3);
}
protected void paint(Graphics graphics)
{
graphics.clear();
graphics.setColor(Color.WHITE);
graphics.fillRect(0, 0, (this.getWidth()), (this.getHeight()));
graphics.setColor(color_computacenter_light_blue);
graphics.drawRect(0, 0, (this.getWidth()), (this.getHeight()));
super.paint(graphics);
}
};
Есть идеи, как это исправить? Спасибо