Display Image from url using picasso image loader,it working fine but i wont display image from cache when wifi is off state.
 ImageView photo=(ImageView)findViewByid(R.id.photo);
 Picasso.with(context)
                    .load("thumburl")
                    .placeholder(R.mipmap.ic_launcher)
                    .error(R.mipmap.pattern1)
                    .into(photo);
 
     
    