LruCachelruCache = new LruCache(context);Picasso picasso = new Picasso.Builder(context).memoryCache(lruCache).build();
picasso.load(portraitUrl).resize(50, 50).centerCrop().error(R.drawable.user_portrait
我想知道在Android中存储位图的数组实现的最佳选择是什么。在ArrayList<Bitmap>中存储位图是一个好主意,还是不是一个好的解决方案。下面是我正在做的事情:ArrayList<Bitmap> temp = new ArrayList<Bitmap>();
temp.add(mBitmap);
//in my