我必须为平板电脑创建 android 应用程序,应用程序将显示新杂志和他的页面。每本杂志大约有 70 页,每页都有封面作为图像,重约 700 000 字节。应用程序的主页显示大图像和带有图像的小画廊(画廊视图)。我在 android 3.2 的模拟器上工作。当我将图像添加到图库并尝试滑动它时,它无法顺利运行。有时不会加载所有图像,LogCat 会向我显示以下信息:
11-17 14:30:51.598: D/skia(5868): libjpeg error 105 < Ss=%d, Se=%d, Ah=%d, Al=%d> from read_scanlines [128 168]
11-17 14:30:51.598: D/skia(5868): --- decoder->decode returned false
现在我将大约 7 张图像放入画廊,我按如下方式缩放:
public Bitmap decodeFile(String f) {
try {
BitmapFactory.Options o = new BitmapFactory.Options();
o.inJustDecodeBounds = true;
BitmapFactory.decodeStream(new FileInputStream(f),null,o);
final int REQUIRED_SIZE=75;
int width_tmp=o.outWidth, height_tmp=o.outHeight;
int scale=1;
while(true) {
if(width_tmp/2<REQUIRED_SIZE || height_tmp/2<REQUIRED_SIZE)
break;
width_tmp/=2;
height_tmp/=2;
scale*=2;
}
BitmapFactory.Options o2 = new BitmapFactory.Options();
o2.inSampleSize=scale;
return BitmapFactory.decodeStream(new FileInputStream(f), null, o2);
} catch (FileNotFoundException e) {}
return null;
}
并像这样在画廊中展示:
public View getView(int position, View convertView, ViewGroup parent) {
View retval = LayoutInflater.from(parent.getContext()).inflate(R.layout.viewitem, null);
ImageView iV = (ImageView) retval.findViewById(R.id.image);
String path = ArrayHelper.list.get(position).get("pageId").toString();
Bitmap bP = decodeFile(Environment.getExternalStorageDirectory() + "/MCW/" + path + "/head.jpg");
iV.setImageBitmap(bP);
return retval;
}
将来我会在画廊里有更多的图像,我可以想象它会如何工作。
我的问题是:我应该做什么?我应该如何加载图像?