在黑莓(OS 7.0)上开发,我创建了一个扩展的垂直字段管理器:
_myVFM = new MyViewManager(Manager.USE_ALL_WIDTH | Manager.USE_ALL_HEIGHT | Manager.VERTICAL_SCROLL){};
但是,当我滚动视图时,虚拟滚动视图的大小显得太大了。即,我可以向下滚动很多,而不是需要,但我不知道为什么?
任何机构任何快速的想法?我确实有一个这样创建的背景图像:
public void paint(Graphics graphics)
{
Bitmap backgroundBitmap = Bitmap.getBitmapResource("bg.png");
Bitmap newBackground = new Bitmap(Display.getWidth(), Display.getHeight());
backgroundBitmap.scaleInto(newBackground, Bitmap.FILTER_LANCZOS, Bitmap.SCALE_TO_FILL);
graphics.clear();
graphics.drawBitmap(0, 0, Display.getWidth(),
Display.getHeight(), newBackground, 0, 0);
super.paint(graphics);
}
请和谢谢,
洞穴