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

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

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。