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(); }
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(); }
Comments
Post a Comment