2010-12-17 107 views
1

我已經寫了下面的代碼添加圖像作爲背景黑莓screen.The圖像大小爲320 * 240.The圖像被添加到屏幕,但然後我想根據BB屏幕高度和寬度的大小增加其高度和寬度。增加圖像的高度widht根據BB屏幕大小

以下是代碼我已經寫:

Bitmap xtclogoBitmap = Bitmap.getBitmapResource("launch_xtc.jpg"); 
BitmapField xtcbitmapField = new BitmapField(xtclogoBitmap,Field.USE_ALL_HEIGHT | Field.USE_ALL_WIDTH); 
add(xtcbitmapField); 

我怎樣才能提高圖像的高度和寬度按照BB的屏幕尺寸?

+0

可能重複的[黑莓 - 如何調整圖像?](http://stackoverflow.com/questions/1769755/blackberry-how-to-resize-image) – 2010-12-20 14:04:05

回答

1
Bitmap img=Bitmap.getBitmapResource("3.jpg"); 
Bitmap bg = new Bitmap(Display.getWidth(), Display.getHeight()); 
img.scaleInto(bg,Bitmap.FILTER_LANCZOS, Bitmap.SCALE_TO_FILL); 

可以更換Bitmap.SCALE_TO_FILL和/或根據自己的需要添加例如修改的getHeight和寬度的值,則只需添加BG

檢查這個解釋從黑莓here

問候,

相關問題