Bitmap.scaleInto()函数是否适用于旧版本的黑莓实际设备

时间:2010-05-20 12:08:37

标签: blackberry blackberry-storm blackberry-jde

任何人都可以告诉我,scaleinto功能可以在具有旧版本5.0的实际设备上运行。 Bleow是代码。

 public static Bitmap resizeImage(Bitmap originalImage, int newWidth, int newHeight) {
   Bitmap newImage = new Bitmap(newWidth, newHeight);
   originalImage.scaleInto(newImage, Bitmap.FILTER_BILINEAR, Bitmap.SCALE_TO_FILL);
  return newImage;
 }

1 个答案:

答案 0 :(得分:1)

不,您可以在API中看到scaleInto方法仅在OS 5.0中添加。您将无法在旧设备上使用它。