我们经常需要把一些不是圆形的图片剪切成圆形后来使用,比如QQ头像,微博头像等都是圆形,那么问题来了,该怎么把一张不是圆形的图片剪切成圆形呢? 下面就是其中一种可以实现这种需求的方法: 具体实现思路: 1.假设边框宽度为BorderW 2.开启的图片上下文的尺寸就应该是原始图片的宽高分别加上两倍的Bo ...
分类:
移动开发 时间:
2016-04-11 13:50:37
阅读次数:
251
package com.example.myviews;import android.content.Context;import android.util.AttributeSet;import android.widget.ImageView;import android.graphics.Bi ...
分类:
其他好文 时间:
2016-04-11 12:12:10
阅读次数:
181
//自定义MyApplication类,需要在列表清单中设置 <application android:name="com.ce.image.MyApplication"//将类的名称赋给这个application package com.ce.image;import com.nostra13.u ...
分类:
其他好文 时间:
2016-04-09 08:07:28
阅读次数:
222
我们可以吧这段代码稍微改动一下,就可以灵活的获取到一个圆形图片: 绘制带圆环的圆形图片 总结:绘制圆形图片的步骤: 绘制带圆环的圆形图片的步骤: {1.开启图片的图形上下文
分类:
其他好文 时间:
2016-03-15 06:16:56
阅读次数:
246
import android.content.Context; import android.graphics.*; import android.util.AttributeSet; import android.widget.ImageView; /** * Created by cg on 2
分类:
其他好文 时间:
2016-02-16 10:00:51
阅读次数:
162
UCZProgressView 是一个带有通用的圆形图片进度下载控件。动画效果不错 特性 Customizable indicator (line width, radius, and color) Display a label with the current progress. Customi
分类:
移动开发 时间:
2016-02-11 19:17:00
阅读次数:
277
Android圆形图片控件效果图如下:代码如下:RoundImageView.javapackage com.dxd.roundimageview; import android.content.Context; import android.content.res.TypedArray; impo...
分类:
移动开发 时间:
2016-01-18 17:24:18
阅读次数:
215
一.概述圆形图片现在越来越多应用于Android应用中, 但是用的最多的地方当属于, 头像的显示. 比如QQ, 新浪微博,微信中很多地方都是用了圆形头像,所以有必要深究一下.二.圆形图片的实现方式1.使用自定义控件2.使用第三方库下面先说第1种, 自定义控件运行效果图:
分类:
移动开发 时间:
2016-01-18 12:03:11
阅读次数:
253
介绍制作圆形头像、圆角按钮、带边框圆角label等的方法...
分类:
移动开发 时间:
2016-01-13 17:56:48
阅读次数:
264
绘制流程:1.根据获取的属性值,判断显示模式,并设置圆形图片、外边框、内边框的半径值2.画边框3.画图片内容(1)获取原图(2)得到正方形图(3)得到缩放图(4)得到圆形图public class MyRoundImageView extends ImageView {private int def...
分类:
其他好文 时间:
2015-12-23 14:22:05
阅读次数:
262