CustomShapeImageView icon indicating copy to clipboard operation
CustomShapeImageView copied to clipboard

SvgImageView cannot display image from url.

Open nguyenquanghai opened this issue 8 years ago • 1 comments

<com.meg7.widget.SvgImageView android:id="@+id/iv_avatar" android:layout_width="100dp" android:layout_height="100dp" android:scaleType="centerCrop" app:svg_raw_resource="@raw/avatar" /> i have using Glide to load image from internet. but image cannot display on my UI. please help me to resolve this issues. thanks

nguyenquanghai avatar Jun 16 '16 07:06 nguyenquanghai

Use Picasso Picasso.with(getContext()) .load(friend.userAvatarUrl) .noFade() .into(profilePhoto);

Murtowski avatar May 04 '17 18:05 Murtowski