Android-第三节圆形图案及shape属性(修改圆形图片)

public CircleImageView(Context context) {

super(context);

}

public CircleImageView(Context context, @Nullable AttributeSet attrs) {

super(context, attrs);

}

public CircleImageView(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {

super(context, attrs, defStyleAttr);

}

@Override

protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {

super.onMeasure(widthMeasureSpec, heightMeasureSpec);

//由于是圆形,宽高应保持一致

int size = Math.min(getMeasuredWidth(), getMeasuredHeight());

mRadius = size / 2;

setMeasuredDimension(size, size);

}

@SuppressLint(“DrawAllocation”)

@Override

protected void onDraw(Canvas canvas) {

mPaint = new Paint();

Drawable drawable = getDrawable();

if (null != drawable) {

Bitmap bitmap = ((BitmapDrawable) drawable).getBitmap();

//初始化BitmapShader,传入bitmap对象

BitmapShader bitmapShader = new BitmapShader(bitmap, Shader.TileMode.CLAMP, Shader.TileMode.CLAMP);

//计算缩放比例

mScale = (mRadius * 2.0f) / Math.min(bitmap.getHeight(), bitmap.getWidth());

Matrix matrix = new Matrix();

matrix.setScale(mScale, mScale);

bitmapShader.setLocalMatrix(matrix);

mPaint.setShader(bitmapShader);

//画圆形,指定好坐标,半径,画笔

canvas.drawCircle(mRadius, mRadius, mRadius, mPaint);

} else {

super.onDraw(canvas);

}

}

}

1.创建java代码

在这里插入图片描述

2.创建ImageView组件

在这里插入图片描述

3.修改ImageView,将刚刚写好的代码引用

在这里插入图片描述

在这里插入图片描述

二、按钮圆角

=====================================================================

2.1主要属性


2.1.1shape属性

shape可取值:

矩形(rectangle)、椭圆(oval)、线(line)、圆环(ring)四种图形

在这里插入图片描述

2.1.2shape属性下的属性

corners(圆角)、gradient(渐变)

padding(间隔)、size(大小)

solid(填充)、stroke(描边)

solid(填充)

//填充颜色

corners(圆角)

//圆角弧度为50dp

android:bottomLeftRadius=“” //底部左下角

android:bottomRightRadius=“” //底部右下角

android:topLeftRadius=“” //顶部左上角

android:topRightRadius=“” //顶部右上角

stroke(描边)

<stroke

android:color=“” //描边颜色

android:width=“” //描边宽度

android:dashGap=“” //两段虚线之间的空隙宽度

android:dashWidth=“” //一段线的宽度

/>

其中 dashGap dashWidth 两个属性彼此一起存在才生效。

例子:

在这里插入图片描述

<shape xmlns:android=“http://schemas.android.com/apk/res/android”

android:shape=“line” >

<stroke

android:dashGap=“20dp”

android:dashWidth=“10dp”

android:width=“1dp”

android:color=“#000000” />

gradient(渐变)

android:startColor=“” //起始颜色

android:centerColor=“” //中间颜色

android:endColor=“” //末尾颜色

android:angle=“” //代表渐变颜色的角度,

必须是45的整数倍.

android:type=“”

android:centerX=“” //相对X的渐变位置

android:centerY=“” //相对Y的渐变位置

android:gradientRadius=“” //渐变颜色的半径,单位应该是像素点. 需要 android:type=“radial”.

android:useLevel=“” //如果当做是LevelListDrawable使用时值为true,否则为false.

例子:

在这里插入图片描述

size(大小)

android:width=“50dp” //宽度

android:height=“50dp” //高度

padding(间隔)

android:left=“2dp”

android:top=“2dp”

android:right=“2dp”

android:bottom=“2dp” //上下左右的间隔

2.2使用方法


1.创建资源文件(drawable下)

在这里插入图片描述

2.选择shape类型

在这里插入图片描述

3.选择所需属性

在这里插入图片描述

4.运行结果

在这里插入图片描述

三、总结

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值