@Override
public void onCreate() {
super.onCreate();
// config Picasso to use OkHttp for image caching
// This will speed up image loading time and allow offline usage of the app
Picasso.Builder builder = new Picasso.Builder(this);
builder.downloader(new OkHttpDownloader(this, Integer.MAX_VALUE));
Picasso built = builder.build();
built.setIndicatorsEnabled(false);
if(BuildConfig.DEBUG) {
built.setLoggingEnabled(true);
}
Picasso.setSingletonInstance(built);
}
XYZReaderApplication.java 文件源码
java
阅读 24
收藏 0
点赞 0
评论 0
项目:XYZReader
作者:
评论列表
文章目录