2
我減少圖像的大小使用此項功能:減少BitmapDrawable大小
Drawable reduceImageSize (String path)
{
BitmapDrawable bit1 = (BitmapDrawable) Drawable.createFromPath(path);
Bitmap bit2 = Bitmap.createScaledBitmap(bit1.getBitmap(), 640, 360, true);
BitmapDrawable bit3 = new BitmapDrawable(getResources(),bit2);
return bit3;
}
而且其做工精細,唯一的問題是,當我打電話的應用越來越慢這個功能多的時候,有沒有什麼辦法優化這個功能?也許通過矩陣縮小大小? 此外,我正在讀取SD卡中的圖像,並且需要背部作爲可繪製的動畫,並且此功能提供了此功能。