RoundedImageView使用吐槽心得(RoundedImageView与Glide加载图片,第一次加载无法圆角问题)

最近使用的时候发现一个问题,

RoundedImageView与Glide搭配使用的时候,第一次加载图片(内存中没有),后图片无法圆角,后来尝试各种改,最后想到了一个办法,就是让Glide加载图片的 时候让图不直接给控件,让控件拿到Bitmap后在操作
RoundedImageView img = (RoundedImageView) vi.findViewById(R.id.img_invitation_home);
//这里一定要加上asBitmap因为不加的话,RoundedImageView内存中第一次有该图片后无法圆角
Glide.with(ElectronicInvitationHomeActivity.this).load(urls.get(position)).asBitmap().placeholder(R.mipmap.bg_loadimage).into(img);