HTTP IMAGE REQUEST ANDROID -


i have loaded image image view image url using picasso library.. want image updated in app anytime change image on website... please me out.

if using fragment

picasso.with(getactivity()).load("http://example.com/image.jpg").into(imageview); 

or activity

picasso.with(context).load("http://example.com/image.jpg").into(imageview); 

now on website make sure changing image same name , extension in case 'image.jpg'


Comments