I would like to make an ImageView display an image on a website. So I create a new ImageView and execute imgView.setImageURI(uri);
imgView.setImageURI(uri);
When I launch the app the
Use library Picasso Manifest
Use library Picasso
Manifest
uses-permission android:name="android.permission.INTERNET"
build gradle
implementation 'com.squareup.picasso:picasso:2.71828'
Activity:
Picasso.get().load(photoUrl).into(imageView);