波浪进度,自定义控件之WaveView

刚好有注意到百度外卖以及淘宝个人中心,都用到了类似水波起伏的效果,于是就参照网上的资料然后自己整改,自定义了一个waveView ,原理么,首先就是自定义个WaveView,继承View,然后再WaveView 内部实现代码逻辑:

自定义WaveView

public class LD_WaveView extends View { 
private int mProgress;//进度 
private int mTimeStep = 10;//时间间隔 
private int mSpeed = 5;//波单次移动的距离 
private int mViewHeight;//视图宽高 
private int mViewWidth;//视图宽度 
private int mLevelLine;// 基准线 
private int mWaveLength;//波长 暂定view宽度为一个波长 
private int mStrokeWidth;//园的线宽 
private RectF rectF;//圆环区域 
private int mWaveHeight;//波峰高度 
private int mLeftWaveMoveLength;//波平移的距离,用来控制波的起点位置 
private int mWaveColor;//波的颜色 
private Paint mPaint;//画笔
private Paint mCirclePaint;//圆环画笔 
private Paint mBorderPaint;//边界画笔 
private int mBorderWidth=4;//边界宽度 
private Paint mTextPaint;//文字画笔 
private Path mPath;//绘画线 
private List<Point> mPoints;//点的集合 
private boolean isMeasure = false;//是否已测量过
private boolean isCircle=false;//是否圆形默认false,可属性代码设置 //处理消息 

private Handler handler = new Handler() { 
@Override 
public void handleMessage(Message msg) { 
initWaveMove(); } 
}; 

/** * 初始化波的移动 */ 
private void initWaveMove(){ 
mLeftWaveMoveLength+=mSpeed;//波向右移动距离增加mSpeed; 
if (mLeftWaveMoveLength>=mWaveLength){
//当增加到一个波长时回复到0 
mLeftWaveMoveLength=0; 
}
 invalidate(); 
} 

public LD_WaveView(Context context) { this(context, null); } 

public LD_WaveView(Context context, AttributeSet attrs) { this(context, attrs, 0); } 

public LD_WaveView(Context context, AttributeSet attrs, int defStyleAttr) { 
super(context, attrs, defStyleAttr); 
getAttr(context, attrs, defStyleAttr);
 init(); 
} 

/** * 初始化画笔 */ 
private void init() { 
mPoints = new ArrayList<Point>(); //波浪轨迹画笔 
mPaint = new Paint(); 
mPaint.setAntiAlias(true);
mPaint.setColor(mWaveColor); 
mPaint.setStyle(Paint.Style.FILL_AND_STROKE); 
mPath = new Path(); //文字画笔 
mTextPaint=new Paint();
mTextPaint.setColor(Color.RED);
mTextPaint.setTextAlign(Paint.Align.CENTER); 
mTextPaint.setTextSize(48); //圆环画笔 
mCirclePaint=new Paint(); 
mCirclePaint.setAntiAlias(true);
 mCirclePaint.setColor(Color.WHITE); 
mCirclePaint.setStyle(Paint.Style.STROKE); //边界线画笔 
mBorderPaint=new Paint(); 
mBorderPaint.setAntiAlias(true); 
mBorderPaint.setColor(mWaveColor); 
mBorderPaint.setStrokeWidth(mBorderWidth); mBorderPaint.setStyle(Paint.Style.STROKE); } 

/** * 获取自定义的属性值 * * @param attrs */ 
private void getAttr(Context context, AttributeSet attrs, int defStyle) { 
TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.LD_WaveView, defStyle, 0);
 mWaveColor = a.getColor(R.styleable.LD_WaveView_wave_color, Color.RED); isCircle=a.getBoolean(R.styleable.LD_WaveView_wave_circle,false); a.recycle(); } 

/** * * @param widthMeasureSpec * @param heightMeasureSpec */ 
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { super.onMeasure(widthMeasureSpec, heightMeasureSpec); 
if (!isMeasure&&Math.abs(getMeasuredHeight()-getMeasuredWidth())<50) {
//只计算一次就够了 ,relativelayout的时候要绘制两次 加个宽高判断 
mViewHeight = getMeasuredHeight(); 
mViewWidth = getMeasuredWidth();
 mLevelLine = mViewHeight; 
//初始化波的准位线 起始位视图最底部
 {
 mLevelLine = mViewHeight * (100-mProgress) / 100;
 if (mLevelLine < 0)
 mLevelLine = 0; 
} 
//计算波峰值 
mWaveHeight = mViewHeight / 20;
//波峰暂定为view高度的1/20,如果需要设置 可设置set方法赋值; 
mWaveLength = getMeasuredWidth(); 
//计算所有的点 这里取宽度为整个波长 往左再延伸一个波长 两个波长则需要9个点 
for (int i = 0; i < 9; i++) { 
int y = 0; 
switch (i % 4) { 
case 0: 
y = mViewHeight;
 break;
 case 1: 
y =mViewHeight+ mWaveHeight; 
break; 
case 2: 
y = mViewHeight; 
break; 
case 3: 
y = mViewHeight-mWaveHeight;
 break;
 }
 Point point = new Point(-mWaveLength + i * mWaveLength / 4, y); 
mPoints.add(point); }
 /** * 计算圆环宽度 */ 
int mIncircleRadius=mViewHeight<mViewWidth?mViewHeight/2:mViewWidth/2;
//内切圆半径
 int mcircumcircleRadius= (int) (Math.sqrt((float)(Math.pow(mViewHeight/2,2)+Math.pow(mViewWidth/2,2)))+0.5);
//外接圆半径 
int radius=mcircumcircleRadius/2+mIncircleRadius/2;
 rectF=new RectF(mViewWidth/2-radius,mViewHeight/2-radius,mViewWidth/2+radius,mViewHeight/2+radius); mStrokeWidth=mcircumcircleRadius-mIncircleRadius; mCirclePaint.setStrokeWidth(mStrokeWidth);
//线是有宽度的 采用了这种方式画圆环 isMeasure = true; } }
 @Override 
protected void onDraw(Canvas canvas) { 
super.onDraw(canvas);
 /** * 绘制线条 */
 mPath.reset();
 int i = 0; 
mPath.moveTo(mPoints.get(0).getX()+mLeftWaveMoveLength, mPoints.get(0).getY()-mViewHeight*mProgress/100);
 for (; i < mPoints.size() - 2; i += 2) {
 mPath.quadTo(mPoints.get(i + 1).getX()+mLeftWaveMoveLength, mPoints.get(i + 1).getY()-mViewHeight*mProgress/100, mPoints.get(i + 2).getX()+mLeftWaveMoveLength, mPoints.get(i + 2).getY()-mViewHeight*mProgress/100); 
}
mPath.lineTo(mPoints.get(i).getX()+mLeftWaveMoveLength, mViewHeight); mPath.lineTo(mPoints.get(0).getX()+mLeftWaveMoveLength, mViewHeight); 
mPath.close(); 
/** * 绘制轨迹 */ 
canvas.drawPath(mPath,mPaint); 
Rect rect = new Rect(); 
String progress=String.format("%d%%",mProgress); mTextPaint.getTextBounds(progress,0,progress.length(), rect);
int textHeight = rect.height();
if (mProgress>=50)
//如果进度达到50 颜色变为白色,没办法啊,进度在中间 不变颜色看不到 mTextPaint.setColor(Color.WHITE);
else mTextPaint.setColor(mWaveColor); canvas.drawText(progress,0,progress.length(),mViewWidth/2,mViewHeight/2+textHeight/2,mTextPaint); 
if (isCircle) {
/** * 绘制圆环 */ 
canvas.drawArc(rectF, 0, 360, true, mCirclePaint); 
Paint circlePaint = new Paint(); 
circlePaint.setStrokeWidth(5); 
circlePaint.setColor(Color.WHITE); 
circlePaint.setAntiAlias(true); 
circlePaint.setStyle(Paint.Style.STROKE); 
canvas.drawCircle(mViewWidth / 2, mViewHeight / 2, mViewHeight / 2, circlePaint); 
/** * 绘制边界 */ 
mBorderPaint.setStrokeWidth(mBorderWidth/2); 
canvas.drawCircle(mViewWidth/2,mViewHeight/2,mViewHeight/2-mBorderWidth/2,mBorderPaint); 
}
else { 
/** * 绘制矩形边框 */ 
canvas.drawRect(0,0,mViewWidth,mViewHeight,mBorderPaint); 
} 
 handler.sendEmptyMessageDelayed(0,mTimeStep); 
} 

/** * 设置进度 基准线 * 
@param mProgress */ 
public void setmProgress(int mProgress) { 
this.mProgress = mProgress; 
mLevelLine=(100-mProgress)*mViewHeight/100; 
}
 /** * 设置是否为圆形 * @param circle */ 
public void setCircle(boolean circle) { isCircle = circle; }}

自定义属性

<?xml version="1.0" encoding="utf-8"?>
<resources> 
<declare-styleable name="LD_WaveView"> 
<attr name="wave_color" format="color"></attr> 
<attr name="wave_circle" format="boolean"></attr> 
</declare-styleable>
</resources>

xml布局

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 
xmlns:android="http://schemas.android.com/apk/res/android"    
xmlns:app="http://schemas.android.com/apk/res-auto"    
android:layout_width="match_parent"    
android:layout_height="match_parent"    
android:background="#ffffff"    
android:orientation="vertical"> 
      <com.zx.android_01.WaveView       
      android:id="@+id/waveViewCircle"       
      android:layout_width="100dp"        
      android:layout_height="100dp"        
      android:layout_centerHorizontal="true"        
      android:layout_marginTop="20dp"       
      app:wave_circle="true"      
      app:wave_color="#000000" />   
     <com.zx.android_01.WaveView        
      android:id="@+id/waveView"        
      android:layout_width="100dp"       
      android:layout_height="100dp"        
      android:layout_centerInParent="true"        
      app:wave_circle="false"        
      app:wave_color="#000000" />
</RelativeLayout>

调用的Activity

public class MainActivity extends AppCompatActivity {   
     WaveView waveView;//方形    
      WaveView waveCircleView;//圆形    
    private int progrees = 0;//进度    
    private Handler mHandler = new Handler() {        
@Override       
 public void handleMessage(Message msg) {            
    if (progrees == 100) 
      progrees = 0;            
    Log.i("progress", progrees + "");            
    waveView.setmProgress(progrees++);            
    waveCircleView.setmProgress(progrees++);            
    mHandler.sendEmptyMessageDelayed(0, 100);       
 }   
 };    

@Override   
 protected void onCreate(Bundle savedInstanceState) {        
    super.onCreate(savedInstanceState);        
    setContentView(R.layout.activity_main);        
    waveView = (WaveView) findViewById(R.id.waveView);        
    waveCircleView = (WaveView) findViewById(R.id.waveViewCircle);        
    mHandler.sendEmptyMessageDelayed(0, 10);    
}   
 @Override    
protected void onDestroy() {        
      super.onDestroy();       
      mHandler.removeCallbacksAndMessages(null);   
 }
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,293评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,604评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,958评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,729评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,719评论 5 366
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,630评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,000评论 3 397
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,665评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,909评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,646评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,726评论 1 330
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,400评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,986评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,959评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,197评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 44,996评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,481评论 2 342

推荐阅读更多精彩内容

  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 171,428评论 25 707
  • 发现 关注 消息 iOS 第三方库、插件、知名博客总结 作者大灰狼的小绵羊哥哥关注 2017.06.26 09:4...
    肇东周阅读 12,016评论 4 62
  • 世界上最焦急的状态是我等你回复我消息时,看见你在朋友圈更新了动态!—— 导语 这是个老生常谈的话题了,但也是我们经...
    托腮小肥猫阅读 625评论 0 1
  • fdisk功能说明:磁盘分区。语法:fdisk [-b ][-uv][外围设备代号] 或 fdisk [-l][-...
    shuff1e阅读 215评论 0 0
  • python实战计划的第十个项目:绘制发帖量的折线图。 具体的任务:绘制武昌、洪山、江岸三个地区分别在1月份-7月...
    乐小Pi孩_VoV阅读 228评论 0 0