Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> android:模擬水波效果的自定義View

android:模擬水波效果的自定義View

編輯:關於Android編程

 

歡迎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;
	}


 

 

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved