Posts

Showing posts from February, 2017

Loading image with Glide in android

step 1:- compile 'com.github.bumptech.glide:glide:3.5.2' step 2:- String url="your url"; try { Glide. with (this) .load(url) .into( imageview ); } catch (Exception e) { e.printStackTrace(); }