Вы должны изменить размер изображения в соответствии с шириной и высотой экрана, чтобы соответствовать экрану, на котором вы работаете.
Для этого будут использоваться следующие методы.
public static EncodedImage sizeImage(EncodedImage image, int width,
int height) {
EncodedImage result = null;
int currentWidthFixed32 = Fixed32.toFP(image.getWidth());
int currentHeightFixed32 = Fixed32.toFP(image.getHeight());
int requiredWidthFixed32 = Fixed32.toFP(width);
int requiredHeightFixed32 = Fixed32.toFP(height);
int scaleXFixed32 = Fixed32.div(currentWidthFixed32,
requiredWidthFixed32);
int scaleYFixed32 = Fixed32.div(currentHeightFixed32,
requiredHeightFixed32);
result = image.scaleImage32(scaleXFixed32, scaleYFixed32);
return result;
}
После изменения размераиспользуйте метод обрезки ниже.
public static Bitmap cropBitmap(Bitmap original, int width, int height) {
Bitmap bmp = new Bitmap(width, height);
int x = (original.getWidth() / 2) - (width / 2); // Center the new size by width
int y = (original.getHeight() / 2) - (height / 2); // Center the new size by height
int[] argb = new int[width * height];
original.getARGB(argb, 0, width, x, y, width, height);
bmp.setARGB(argb, 0, width, 0, 0, width, height);
return bmp;
Создайте растровое изображение следующим образом.
EncodedImage eImage = EncodedImage.getEncodedImageResource("img/new.png" );
EncodedImage bitimage=sizeImage(eImage,Display.getWidth(),Display.getHeight());
Bitmap image=cropBitmap(bitimage.getBitmap(),Display.getWidth(),Display.getHeight());
Передайте растровое изображение выше вашему менеджеру.
Теперь установите возвращенное растровое изображение в качестве фонана экран. Это сработало для меня. Надеюсь, это поможет вам.