public class CustomView extends View {
private float cornerRadius;
public CustomView(Context context) {
super(context);
init();
}
public CustomView(Context context, AttributeSet attrs) {
super(context, attrs);
TypedArray typedArray = context.obtainStyledAttributes(attrs, R.styleable.CustomView);
cornerRadius = typedArray.getDimension(R.styleable.CustomView_cornerRadius, 0);
typedArray.recycle();
init();
}
private void init() {
// 设置outline provider
setOutlineProvider(new ViewOutlineProvider() {
@Override
public void getOutline(View view, Outline outline) {
// 创建一个圆角矩形的轮廓
outline.setRoundRect(0, 0, view.getWidth(), view.getHeight(), cornerRadius);
}
});
// 开启视图剪切到outline
setClipToOutline(true);
}
}文章来源:https://www.toymoban.com/news/detail-671567.html
2.第二种方法,用ShapeableImageView自定义圆角文章来源地址https://www.toymoban.com/news/detail-671567.html
到了这里,关于android 自定义圆角View的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!