通信先から画像を引っ張りViewに埋め込むという状況は多々ありますが、
その時の処理を行ってくれるのがpicaso libraryです。
gradleファイルに追加
1 2 3 |
dependencies { compile 'com.squareup.picasso:picasso:2.5.2' } |
続いてImageViewに外部urlの画像を埋め込むコードです
1 2 |
String url = "http://画像.png"; Picasso.with(context).load(url).into(imageView) |
code
more code
~~~~