My background bitmap size is 360 X 480. It fits properly for the 9630 simulator, but it does not fit for the 9550 and 8520 simulators. I need to place the image as the background and have it look right on all simulators.
What image size do I need to adjust for all simulators?
I am using the following code to display the background image:
private VerticalFieldManager _manager;
Bitmap backgroundBitmap1
= Bitmap.getBitmapResource("initloadsolution.jpg");
Bitmap background_smartBitmap
= Bitmap.getBitmapResource("initloadsolution_smart.jpg");
Background bg1
= BackgroundFactory.createBitmapBackground(backgroundBitmap1);
_manager.setBackground(bg1);