我目前使用这样的代码来为不同的屏幕尺寸重新调整位图:
A.back = GPATools.ResizeTransparentBitmap(A.back, 150, 37,
Bitmap.FILTER_LANCZOS, Bitmap.SCALE_TO_FIT);
但是,每次我加载应用程序时,都需要花费一些时间来重新调整它的大小,所以我被告知要使用以下代码:
class PersistableBitmap implements Persistable {
int width;
int height;
int[] argbData;
public PersistableBitmap(Bitmap image){
width = image.getWidth();
height = image.getHeight();
argbData =new int[width * height];
image.getARGB(argbData,0, width,0,0, width, height);
}
public Bitmap getBitmapImage(){
Bitmap image =new Bitmap(width, height);
image.setARGB(argbData,0, width,0,0, width, height);
return image;
}
我的问题是,我不知道如何同时实现这两者!请各位大侠帮忙,万分感谢!