一个支持圆角的快速ImageView:RoundedImageView
jopen
11年前
RoundedImageView是一个支持圆角的快速ImageView,基于 example from Romain Guy实现。
<com.makeramen.RoundedImageView xmlns:app="http://schemas.android.com/apk/res-auto" android:id="@+id/imageView1" android:src="@drawable/photo1" android:scaleType="centerCrop" app:corner_radius="30dip" app:border_width="2dip" app:border_color="#333333" app:round_background="true" />
或者
RoundedImageView iv = new RoundedImageView(context); iv.setScaleType(ScaleType.CENTER_CROP); iv.setCornerRadius(10); iv.setBorderWidth(2); iv.setBorderColor(Color.DKGRAY); iv.setRoundedBackground(true); iv.setImageDrawable(drawable); iv.setBackground(backgroundDrawable);