Popularity
7.4
Stable
Activity
0.0
Stable
1,294
40
308

Programming language: Java
License: Apache License 2.0
Latest version: v0.9

WaveView alternatives and similar packages

Based on the "Progressbar/Progress View Widget" category.
Alternatively, view WaveView alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of WaveView or a related project?

Add another 'Progressbar/Progress View Widget' Package

README

icon

WaveView

Gitter Android Arsenal

A wave view of android,can be used as progress bar.

Screenshot


APK


demo.apk

What can be used as


  • background
  • progress bar

How to use


https://github.com/john990/WaveView/blob/master/app/src/main/res/layout/main.xml#L7-L17

    <com.john.waveview.WaveView
        android:id="@+id/wave_view"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="#ff702e8c"
        wave:above_wave_color="@android:color/white"
        wave:blow_wave_color="@android:color/white"
        wave:progress="80"
        wave:wave_height="little"
        wave:wave_hz="normal"
        wave:wave_length="middle" />

or you can just use(default progress is 80%)

    <com.john.waveview.WaveView
        android:id="@+id/wave_view"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@color/holo_purple"
        />

dependencies

allprojects {
        repositories {
            ...
            maven { url "https://jitpack.io" }
        }
    }

    dependencies {
            compile 'com.github.john990:WaveView:v0.9'
    }