views:

68

answers:

1

How do I make an image suitable for adding to a Screen on a BlackBerry?

A: 
// to store the Bitmap
Bitmap obj = Bitmap.getBitmapResource("path of the image"); 

// to display the Bitmap
add (new BitmapField(obj)); 

please go through the Documentation.. it will help you out.

rupesh