我有大尺寸的图像需要切割60%的高度和60%的宽度,并显示带圆角的结果图像。
我已应用此代码
Bitmap output = Bitmap.createBitmap(bitmap.getWidth(),
bitmap.getHeight(), Config.ARGB_8888);
Canvas canvas = new Canvas(output);
final int color = 0xff424242;
final Paint paint = new Paint();
final Rect rect = new Rect(0, 0, bitmap.getWidth(), bitmap.getHeight());
final RectF rectF = new RectF(rect);
final float roundPx = pixels;
paint.setAntiAlias(true);
canvas.drawARGB(0, 0, 0, 0);
paint.setColor(color);
canvas.drawRoundRect(rectF, roundPx, roundPx, paint);
paint.setXfermode(new PorterDuffXfermode(Mode.SRC_IN));
canvas.drawBitmap(bitmap, rect, rect, paint);
它的工作正常,但我必须设置约50张这样的图像。所以它减慢了过程,我必须等待4秒左右才能打开整个过程的活动。
我也试过
android:adjustViewBounds="true"
但是因为它我的图像被设置但问题是因为大图像会在小区域缩小。看起来不太好。
有没有其他方法可以完成这项工作?是否有可能在xml中完成这项工作,以便在运行时我们可以减少一些活动时间。请帮助..
答案 0 :(得分:1)
答案 1 :(得分:0)
你需要在手机上进行大量繁重的计算。为了实现您的目标,我建议您使用Renderscript。一个好的开始是http://developer.android.com/guide/topics/renderscript/compute.html
您可以在服务中实现繁重的计算以取消主线程的负载。我不确定如何显示数据,但您可以为占位符提供默认图像,并在服务执行时开始更新它们。您可以广播意图以指示每次缩小图像的完成情况。
您还必须为“缩略图”实现缓存,这样您就不必在每次用户启动应用程序时都进行所有计算。
问候。