我的背景位图大小为360 X 480.它适合9630模拟器,但它不适合9550和8520模拟器。我需要将图像作为背景放置,并使其在所有模拟器上看起来都正确。
我需要为所有模拟器调整什么图像尺寸?
我使用以下代码显示背景图片:
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);
答案 0 :(得分:5)
480×360像素(曲线89xx / Tour 9630 / Bold 9650 / Bold 97xx)
360×480像素(Storm 95xx / Torch 98xx)
480×320像素(粗体90xx)
360×400像素(珍珠3G)
320×240像素(83xx / 85xx / 87xx / 88xx /曲线3G)
240×260像素(71xx / 81xx系列)
240×160像素(72xx / 73xx系列)
答案 1 :(得分:0)