Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/chenlittleping/waveprogressbar

A round loading view with dynamic wave(使用二阶贝塞尔曲线实现的圆形动态波浪)
https://github.com/chenlittleping/waveprogressbar

android canvas path waveprogressbar

Last synced: 16 days ago
JSON representation

A round loading view with dynamic wave(使用二阶贝塞尔曲线实现的圆形动态波浪)

Awesome Lists containing this project

README

        

# WaveProgressBar
A round loading view with dynamic wave

一个使用Path的二阶贝塞尔曲线画出波浪,并实现动态滚动的Loading控件

![image](https://github.com/ChenLittlePing/WaveProgressBar/blob/master/gif/demo.gif)

![image](https://github.com/ChenLittlePing/WaveProgressBar/blob/master/gif/demo1.gif)

## How to use
#### In XML
```xml

```

#### In Activity
```java
mWave = (WaveProgressBar) findViewById(R.id.wave);
mWave.setProgress(50);
//mWave.AnimateText(true, false);
```