android – 使用Picasso的Custom Downloader

前端之家收集整理的这篇文章主要介绍了android – 使用Picasso的Custom Downloader前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我必须从URL下载图像,该URL需要一些标题(用户名,密码)以及请求.所以我使用 here给出的代码.但调用函数会产生错误
java.lang.NoClassDefFoundError: com.squareup.okhttp.OkHttpClient
at com.squareup.picasso.OkHttpDownloader.<init>(OkHttpDownloader.java:72)

我正在使用Picasso 2.3.3和okhttp-urlconnection-2.0.0-RC2库
该问题已在this发布,但改为2.3.2无效.

解决方法

你的项目中是否包含OkHttp?如果没有,问题是你正在使用OkHttpDownloader.您可以在项目中包含OkHttp库,也可以在下面添加UrlConnectionDownloader.

这是我最终得到的结果.

public static Picasso getImageLoader(Context ctx) {
    Picasso.Builder builder = new Picasso.Builder(ctx);

    builder.downloader(new UrlConnectionDownloader(ctx) {
        @Override
        protected HttpURLConnection openConnection(Uri uri) throws IOException {
            HttpURLConnection connection = super.openConnection(uri);
            connection.setRequestProperty("X-HEADER","VAL");
            return connection;
        }
    });

    return builder.build();
}
原文链接:https://www.f2er.com/android/310562.html

猜你在找的Android相关文章