Android-->Android 原生支持圆角图片,圆角ImageView

其实Android在V4包里,已经原生支持圆角图片了:

不知道的小伙伴赶紧准备一下小板凳,听我细细说来:

RoundedBitmapDrawable shopDrawable = RoundedBitmapDrawableFactory.create(
getResources(), getAssets().open("shop_image.png"));

//在v4 以前的版本中,使用此方法可以设置 图片为圆角
shopDrawable.setCornerRadius(Integer.MAX_VALUE);

//在v4 新版本中,直接提供了方法设置圆角,代码其实和上面的是一样的
shopDrawable.setCircular(true);

//直接设置,就可以啦...
imageView.setBackgroundDrawable(shopDrawable);

是不是很简单?

如果你只是为了一个圆角而使用第三方jar包,是不是很奢侈?


至此: 文章就结束了,如有疑问: QQ群:274306954 欢迎您的加入.

你可能感兴趣的:(Android-->Android 原生支持圆角图片,圆角ImageView)