Android load image into imageview efficiently(Android有效地将图像加载到imageview中)
问题描述
我有下一个问题:为了避免 OutOfMemoryError,我使用 Picasso 将我的大图像加载到 ImageViews 中:
I have next problem: To avoid OutOfMemoryError i'm loading my big images into ImageViews using Picasso in such way:
public static RequestCreator picasso(final Context context, final int resourceId) {
return Picasso.with(context)
.load(resourceId)
.fit()
.centerCrop()
.noFade();
}
在活动或片段中,我正在将图像加载到 ImageView 中
And in activity or fragment, i'm loading image into ImageView
final ImageView backgroundImage = (ImageView) root.findViewById(R.id.background_image);
Util.picasso(getActivity(),R.drawable.background_soulmap)
.into(backgroundImage);
但是,我有两个问题:
- 图片加载有些延迟(但我需要立即加载)
centerCrop() 在某些情况下不是我需要的.
- Image loads with some delay (but i need to load it immideatly)
centerCrop() is not what i need in some cases.
如何实现 topCrop() 或 bottomCrop() 之类的东西?我试过 https://github.com/cesards/CropImageView 库,但我在 setFrame() 方法中得到 NullPointerException(getDrawable() 返回 null),因为图像尚未加载.提前致谢!
How can i implement something like topCrop() or bottomCrop()? I've tried https://github.com/cesards/CropImageView library, but i'm getting NullPointerException in setFrame() method (getDrawable() returns null), because image did not load yet. Thanks in advance!
推荐答案
图像加载有一些延迟(但我需要立即加载)
Image loads with some delay (but i need to load it immideatly)
您必须选择:(a) 内存有效延迟或 (b) 即时但可能的 OOM.我说根据经验,我在 Play Store 上的应用程序在 Picasso 处理它时会有一点延迟.这就是它的工作原理.
you have to choose: (a) memory efficient delay or (b) instant but probable OOM. And I said that by experience, the app I have on the Play Store have a little delay while Picasso is processing it. It's just how it works.
centerCrop() 在某些情况下不是我需要的.
centerCrop() is not what i need in some cases.
那么您应该将图像 into()
加载到 目标
.目标将在 UI 线程中接收 Drawable
,从那里您可以在 ImageView 中设置它(使用 setScaleType
)或作为您想要的任何背景.甚至可能使用 InsetDrawable
来调整位置.
then you should load the image into()
a Target
. The target will receive the Drawable
in the UI thread, from there you can set it up inside the ImageView (using the setScaleType
) or as a background anyway you want. Maybe even using an InsetDrawable
to adjust position.
这篇关于Android有效地将图像加载到imageview中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Android有效地将图像加载到imageview中
- 想使用ViewPager,无法识别android.support.*? 2022-01-01
- Android - 我如何找出用户有多少未读电子邮件? 2022-01-01
- MalformedJsonException:在第1行第1列路径中使用JsonReader.setLenient(True)接受格式错误的JSON 2022-01-01
- 在测试浓缩咖啡时,Android设备不会在屏幕上启动活动 2022-01-01
- 使用自定义动画时在 iOS9 上忽略 edgesForExtendedLayout 2022-01-01
- 如何检查发送到 Android 应用程序的 Firebase 消息的传递状态? 2022-01-01
- Android - 拆分 Drawable 2022-01-01
- android 4中的android RadioButton问题 2022-01-01
- 用 Swift 实现 UITextFieldDelegate 2022-01-01
- Android viewpager检测滑动超出范围 2022-01-01