dependencies {
implementation 'com.facebook.fresco:fresco:2.0.0'
}
<com.facebook.drawee.view.SimpleDraweeView
android:id="@+id/my_image_view"
android:layout_width="200dp"
android:layout_height="200dp"
fresco:placeholderImage="@drawable/placeholder"
fresco:actualImageScaleType="fitCenter"
fresco:fadeDuration="300"
fresco:roundAsCircle="true"
fresco:roundingBorderColor="#FF0000"
fresco:roundingBorderWidth="2dp"
fresco:roundingBorderPadding="5dp" />
Uri imageUri = Uri.parse("http://example.com/my_image.jpg");
SimpleDraweeView draweeView = findViewById(R.id.my_image_view);
draweeView.setImageURI(imageUri);