gradle
implementation 'com.facebook.fresco:fresco:X.Y.Z'
<com.facebook.drawee.view.SimpleDraweeView
android:id="@+id/my_image_view"
android:layout_width="200dp"
android:layout_height="200dp" />
Uri uri = Uri.parse("http://example.com/my_image.jpg");
SimpleDraweeView draweeView = findViewById(R.id.my_image_view);
draweeView.setImageURI(uri);