gradle
implementation 'com.facebook.fresco:fresco:2.5.0'
<com.facebook.drawee.view.SimpleDraweeView
android:id="@+id/image_view"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
Uri uri = Uri.parse("https://example.com/image.jpg");
SimpleDraweeView imageView = findViewById(R.id.image_view);
imageView.setImageURI(uri);