android - Picasso 绑定(bind)适配器 'a connection was leaked' 消息

标签 android kotlin picasso android-image android-databinding

我正在使用绑定(bind)适配器在回收站 View 中加载图像。图像看起来很好。在快速滚动时,我注意到有时我会收到来自 Picasso 的“连接泄露”消息。

问题来自死图像链接,将我所有的图像 URL 硬编码为指向无处会为每个图像产生错误在将第一对图像滚动出屏幕后

W/OkHttpClient: A connection to https://s3-eu-west-1.amazonaws.com/ was leaked. Did you forget to close a response body?

代码基本一致to this sample .

BindingUtils.kt

object BindingUtils {

@BindingAdapter("imageUrl")
@JvmStatic
fun setImageUrl(imageView: ImageView, url: String) {
    Picasso.with(imageView.context).load(url).into(imageView)
}

xml

<ImageView
android:id="@+id/imageview_merchant_background"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/primary"
android:scaleType="centerCrop"
app:imageUrl="@{viewModel.background}"/>

分级

implementation "com.squareup.retrofit2:retrofit:$rootProject.retrofitVersion"
implementation "com.squareup.retrofit2:adapter-rxjava2:$rootProject.retrofitVersion"
implementation "com.squareup.retrofit2:converter-gson:$rootProject.retrofitVersion"
implementation "com.squareup.okhttp3:logging-interceptor:$rootProject.okhttpLoggingVersion"
implementation "com.squareup.picasso:picasso:$rootProject.picassoVersion"

retrofitVersion = '2.3.0'
okhttpLoggingVersion = '3.6.0'
picassoVersion = '2.5.2'

我可以看到一些人需要关闭标准 Okhttp 请求的连接,但看到 Picasso 加载调用是单行的,这怎么可能泄漏?

最佳答案

Picasso 在后台使用 okhttp3 来处理其网络请求。请参阅此处 Picasso 的 NetworkRequestHandler 类的代码:https://github.com/square/picasso/blob/0728bb1c619746001c60296d975fbc6bd92a05d2/picasso/src/main/java/com/squareup/picasso/NetworkRequestHandler.java

有处理okhttp请求的加载函数:

@Override public Result load(Request request, int networkPolicy) throws IOException {
    okhttp3.Request downloaderRequest = createRequest(request, networkPolicy);
    Response response = downloader.load(downloaderRequest);
    ResponseBody body = response.body();

    if (!response.isSuccessful()) {
      body.close();
      throw new ResponseException(response.code(), request.networkPolicy);
    }

    // Cache response is only null when the response comes fully from the network. Both completely
    // cached and conditionally cached responses will have a non-null cache response.
    Picasso.LoadedFrom loadedFrom = response.cacheResponse() == null ? NETWORK : DISK;

    // Sometimes response content length is zero when requests are being replayed. Haven't found
    // root cause to this but retrying the request seems safe to do so.
    if (loadedFrom == DISK && body.contentLength() == 0) {
      body.close();
      throw new ContentLengthException("Received response with 0 content-length header.");
    }
    if (loadedFrom == NETWORK && body.contentLength() > 0) {
      stats.dispatchDownloadFinished(body.contentLength());
    }
    InputStream is = body.byteStream();
    return new Result(is, loadedFrom);
  }

我对 picasso 项目不太熟悉,但似乎响应主体对象并非在所有情况下都关闭。你可能已经在 Picasso 中发现了一个错误,并可能想在 picasso 的 github 上提出问题

关于android - Picasso 绑定(bind)适配器 'a connection was leaked' 消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47756256/

相关文章:

javascript - 强制在 Android/iOS 应用程序中打开 Youtube 链接

android - 在某个时候声音停止工作

android - 来自房间数据库的数据不会显示在回收站 View 中。可能出了什么问题?

android - 为什么我在自定义 RecyclerView 中的项目图像在滚动时会发生变化?

android - 减少 Android 应用程序的内存使用

android - MIUI 权限被拒绝 Activity KeyguardLocked

java - 使用 Android 手机控制桌面应用程序

Android Timber 多次记录

java - 通过查看 RecyclerView 的值来查找 RecyclerView 行位置

Android Picasso如何从缓存中获取图像位图