Skip to content

Latest commit

 

History

History
24 lines (21 loc) · 511 Bytes

File metadata and controls

24 lines (21 loc) · 511 Bytes

AndroidWaveView

Android仿拉勾网app的波浪View 文章地址 ###效果图 效果图 ###使用方法 在xml中,

	<cn.chenyuantao.view.WaveView
	        android:layout_width="match_parent"
	        android:layout_height="200dp" />

在Activity中,

	//改变颜色
	waveView.setColor(Color.RED);
	//开始(无需手动调用)
	waveView.start();
	//停止
	waveView.stop();