圆形图片CircleImageView的使用和分析

这篇博客探讨了CircleImageView在Android开发中的使用,详细分析了其自定义属性attrs,并着重解析了核心方法setup(),该方法通过invalidate()触发View的重绘,实现圆形图片效果。
摘要由CSDN通过智能技术生成
在项目开发中,我们经常需要用到圆形图片效果,典型案例是用户头像的显示。

如图所示。


下面我们使用开源控件CircleImageView来实现该效果。

CircleImageView项目下载地址:
https://github.com/hdodenhof/CircleImageView

(1).CircleImageView的使用

首先我们将CircleImageView添加到gradle。

dependencies {
    compile 'de.hdodenhof:circleimageview:2.1.0'
}

然后看一下自定义属性attrs:

<declare-styleable name="CircleImageView">
        <attr name="civ_border_width" format="dimension" />
        <attr name="civ_border_color" format="color" />
        <attr name="civ_border_overlay" format="boolean" />
        <attr name="civ_fill_color" format="color" />
    </declare-styleable>


属性介绍:civ_border_width:   设置边框的宽度,默认为0,即无边框。
civ_border_color:    设置边框的颜色,默认为黑色。
civ_border_overlay:设置边框是否覆盖在图片上,默认为false,即边框在图片外圈。
civ_
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值