码迷,mamicode.com
首页 > 移动开发 > 详细

android:模拟水波效果的自定义View

时间:2015-03-31 18:07:02      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:

Github地址:https://github.com/nuptboyzhb/WaterWaveView

欢迎Fork,欢迎Star

1.先看效果

技术分享

2.再看关键代码

描绘函数y = Asin(wx+d)+offset

/**
	 * 使用路径描绘绘制的区域
	 * 
	 * @return
	 */
	private Path getFristWavePath() {
		// 绘制区域1的路径
		if (firstWavePath == null) {
			firstWavePath = new Path();
		}
		firstWavePath.reset();
		firstWavePath.moveTo(0, height);// 移动到左下角的点
		for (float x = 0; x <= width; x += X_STEP) {
			float y = (float) (waveHeight * Math.sin(omega * x + moveWave) + waveHeight)
					+ heightOffset;
			firstWavePath.lineTo(x, y);
		}
		firstWavePath.lineTo(width, 0);
		firstWavePath.lineTo(width, height);
		return firstWavePath;
	}


更多交流

Android开发联盟QQ群:272209595

android:模拟水波效果的自定义View

标签:

原文地址:http://blog.csdn.net/nupt123456789/article/details/44781783

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!