替代CardView实现圆角图的第三方控件

来源:互联网 发布:mac用什么免费办公软件 编辑:程序博客网 时间:2024/06/09 15:12

Android 将图片快速转换成圆角的方法
使用开源项目 RoundedImageView
github上面的开源项目 官方地址为:https://github.com/vinc3m1/RoundedImageView

最近项目中用到圆角图 可是CardView引入时各种报错。我只能另谋生路。遂得此文,我直接在Android Studio中
Add the following to your build.gradle to use:

dependencies {    compile 'com.makeramen:roundedimageview:2.2.1'}

在xml中设置对应属性,就行了。

具体用法参考这篇博客:
http://blog.csdn.net/aaawqqq/article/details/38057145

这篇文章自定义的ImagView也不错 不过我没用试用。留待项目结束后研究一下http://www.cnblogs.com/JczmDeveloper/p/3873049.html?utm_source=tuicool&utm_medium=referral

1 0