使用Glide以及OkHttp整合

_朝暉_發表於2016-02-23

1、glide的使用:

新增依賴:

compile 'com.github.bumptech.glide:glide:3.7.0'
呼叫程式碼:

ImageView imageView = (ImageView) findViewById(R.id.my_image_view);

Glide.with(this).load("http://goo.gl/gEgYUd").into(imageView);

2、新增OKHttp3整合:

compile 'com.github.bumptech.glide:okhttp3-integration:1.4.0@aar'
compile 'com.squareup.okhttp3:okhttp:3.1.2'


3、出現的問題

You must not call setTag() on a view Glide is targeting 

解決方案:把seTag呼叫改為setTag(key,Object)呼叫:

ImageView.setTag(R.id.ImagViewId,saveObject);
 

參考:http://blog.csdn.net/kyleceshen/article/details/49806267

https://github.com/bumptech/glide


相關文章