在黑莓中,我開發了一個屏幕,在背景中顯示大小爲 480 X 360的圖像。我的BB屏幕大小爲480 X 360.由於圖像的大小在我滾動時有點大 垂直屏幕滾動和干擾我的屏幕。我想要 鎖定滾動,這樣我將無法進行垂直滾動。 可能是我要問一個很簡單的問題,但我真的沒有時間去谷歌 作爲now.Please的幫我做這件事黑莓:禁用垂直滾動
我的代碼如下:
public LaunchXtcMsngrScreen()
{
int intwidth = Display.getWidth();
int intheight = Display.getHeight();
//getting the height/width of BB screen
Debugger.debug(UrlInfo.workflow_File,"Screen Height ="+intheight);
Debugger.debug(UrlInfo.workflow_File,"Screen Width ="+intwidth);
BMbackground = Bitmap.getBitmapResource("xtclogo.jpg");
VerticalFieldManager VFM = new VerticalFieldManager(VerticalFieldManager.USE_ALL_WIDTH
| VerticalFieldManager.USE_ALL_HEIGHT
| VerticalFieldManager.NO_VERTICAL_SCROLL
| VerticalFieldManager.NO_VERTICAL_SCROLLBAR)
{
//Override the paint method to draw the background image.
public void paint(Graphics graphics)
{
//Draw the XTC Messenger logo
graphics.drawBitmap(0, 0,Display.getWidth(),Display.getHeight(),BMbackground, 0, 0);
super.paint(graphics);
}
};
Bitmap registerbitmap = Bitmap.getBitmapResource("register_button.PNG");
BFregister = new ImageButtonField(registerbitmap);
BFregister.setMargin(245,0,0,190);//vertical pos,0,0,horizontal pos
VFM.add(BFregister);
add(VFM);
}
問候, 約傑什喬杜裏
真的嗎? 「可能是我問了一個非常簡單的問題,但我真的沒有時間到現在谷歌。請幫助我做到這一點」 – 2011-01-13 15:21:15