Android 性能优化读书笔记(1) Bitmap解码

在项目中有如下的代码,使用BitmapFractory.decodeFile来对Bitmap进行解码。如下代码所示:

public static Bitmap getSmallBitmap(String filePath) {
   
    
    
        final BitmapFactory.Options options = new BitmapFactory.Options();
        options

猜你喜欢

转载自blog.csdn.net/chunqiuwei/article/details/127937399