这篇文章主要为大家详细介绍了Android实现圆角图片的方法,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
本文实例为大家分享了Android实现圆角图片的具体代码,供大家参考,具体内容如下
效果图
创建类CustomRoundAngleImageView
public class CustomRoundAngleImageView extends AppCompatImageView {
float width, height;
public CustomRoundAngleImageView(Context context) {
this(context, null);
init(context, null);
}
public CustomRoundAngleImageView(Context context, AttributeSet attrs) {
this(context, attrs, 0);
init(context, attrs);
}
public CustomRoundAngleImageView(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
init(context, attrs);
}
private void init(Context context, AttributeSet attrs) {
if (Build.VERSION.SDK_INT < 18) {
setLayerType(View.LAYER_TYPE_SOFTWARE, null);
}
}
@Override
protected void onLayout(boolean changed, int left, int top, int right, int bottom) {
super.onLayout(changed, left, top, right, bottom);
width = getWidth();
height = getHeight();
}
@Override
protected void onDraw(Canvas canvas) {
if (width >= 20 && height > 20) {
Path path = new Path();
//四个圆角
path.moveTo(20, 0);
path.lineTo(width - 20, 0);
path.quadTo(width, 0, width, 20);
path.lineTo(width, height - 20);
path.quadTo(width, height, width - 20, height);
path.lineTo(20, height);
path.quadTo(0, height, 0, height - 20);
path.lineTo(0, 20);
path.quadTo(0, 0, 20, 0);
canvas.clipPath(path);
}
super.onDraw(canvas);
}
}
布局代码
<com.example.myapplication.CustomRoundAngleImageView
android:id="@+id/we_image"
android:layout_width="42dp"
android:layout_height="42dp"
android:layout_marginLeft="16dp"
android:layout_marginTop="10dp"
android:src="QG1pcG1hcC9pY19sYXVuY2hlcg=="
android:layout_marginBottom="10dp"
android:layout_gravity="center"
android:scaleType="centerCrop" />
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程学习网。
沃梦达教程
本文标题为:Android实现圆角图片的方法
猜你喜欢
- Android实现监听音量的变化 2023-03-30
- 最好用的ios数据恢复软件:PhoneRescue for Mac 2023-09-14
- iOS 对当前webView进行截屏的方法 2023-03-01
- Android studio实现动态背景页面 2023-05-23
- Android实现轮询的三种方式 2023-02-17
- 详解flutter engine 那些没被释放的东西 2022-12-04
- 作为iOS开发,这道面试题你能答出来,说明你基础很OK! 2023-09-14
- Android MaterialButton使用实例详解(告别shape、selector) 2023-06-16
- Flutter实现底部和顶部导航栏 2022-08-31
- SurfaceView播放视频发送弹幕并实现滚动歌词 2023-01-02
