参考 1 2 3 4 一、自定义view 继承ImageView 文件 value文件夹下 新建attr.xml 复制代码 1 <?xml version="1.0" encoding="utf-8"?> 2 <resources> 3 <declare-styleable name="Shaped ...
分类:
移动开发 时间:
2016-07-14 15:00:03
阅读次数:
322
imageView.layer.cornerRadius = imageView.bounds.size.width * 0.5;// 设置圆角刚好是自身宽度的一半,就刚好是圆形 imageView.layer.masksToBounds = YES; imageView.layer.borderW ...
分类:
移动开发 时间:
2016-06-29 12:49:49
阅读次数:
169
/** * 在圆形外面加一个圆环 */ - (void)yuanHuan{ //0.加载图片 UIImage *image = [UIImage imageNamed:@"AppIcon1024"]; //图片的宽度 CGFloat imageWH = image.size.width; //设置圆 ...
分类:
移动开发 时间:
2016-06-29 12:47:27
阅读次数:
572
废话不多说,直接上代码 源码下载地址:https://github.com/TianHero/caijian.git ...
分类:
移动开发 时间:
2016-06-26 16:51:51
阅读次数:
161
图片样式 .img-responsive: 给图片加该样式可实现响应式布局 .center-block:图片居中样式, 图片形状样式:.img-rounded(圆角图片) , .img-circle(圆形图片),.img-thumbnail(边框圆角) 辅助类样式 文本颜色:.text-muted( ...
分类:
其他好文 时间:
2016-06-20 23:45:46
阅读次数:
172
来自:http://blog.csdn.net/android_dong/article/details/41989499 Android圆形图片控件效果图如下: 代码如下: RoundImageView.java 1、定义自己的属性配置文件:attr.xml 2、在xml配置中使用控件:activ ...
分类:
其他好文 时间:
2016-06-12 13:47:08
阅读次数:
182
Glide是 Google推荐的图片加载库,它可以支持来自url,Android资源,文件,Uri中的图片加载,同时还支持gif图片的加载,以及各种图片显示前的bitmap处理(例如:圆角图片,圆形图片,高斯模糊,旋转,灰度等等),缓存处理,请求优先级处理,动画处理,缩略图处理,图片大小自定义等等.可谓是非常的强大.1.添加Glide库需要在build.gradle中加入依赖,目前最新的版本是3.7...
分类:
其他好文 时间:
2016-06-12 03:29:17
阅读次数:
177