1
從url使用畢加索圖像加載器顯示圖像,它工作正常,但我不會顯示圖像從緩存當無線關閉狀態。如何顯示圖像從wifi緩存中使用picasso圖像加載器時,wifi是關閉?
ImageView photo=(ImageView)findViewByid(R.id.photo);
Picasso.with(context)
.load("thumburl")
.placeholder(R.mipmap.ic_launcher)
.error(R.mipmap.pattern1)
.into(photo);
嘗試此http:// stackoverflow.com/questions/23978828/how-do-i-use-disk-caching-in-picasso ?? – Rahul
謝謝你的工作#Rahul –