2011-09-15 175 views

回答

2

有许多你可能途径做到这一点,但如果它符合你的要求,那么backgroundfactory是很好的。 http://www.blackberry.com/developers/docs/4.6.0api/net/rim/device/api/ui/decor/BackgroundFactory.html

// specify the bitmap and xy positioning to meet your needs 
Background background = BackgroundFactory.createBitmapBackground(Bitmap.getBitmapResource("bitmap.png"),Background.POSITION_X_LEFT, Background.POSITION_Y_BOTTOM, Background.REPEAT_NONE); 

// create a field manager and set its BG to this one 
VerticalFieldManager body = new VerticalFieldManager(USE_ALL_WIDTH|USE_ALL_HEIGHT); 
body.setBackground(background); 
add(body); 

//Some other options 
//Background.REPEAT_NONE 
//Background.REPEAT_SCALE_TO_FIT 
//Background.REPEAT_VERTICAL 
//Background.REPEAT_HORIZONTAL 
+0

谢谢雷......这是真的有用 –

+0

很高兴我能帮助 –