Home

Awesome

WaveLoadingView

Android Arsenal License

WaveLoadingView - An Android library that provides a realistic wave-loading effect.

Sample

<img src="http://7xikfc.com1.z0.glb.clouddn.com/waveloadingview.png" alt="sample" title="sample" width="400" height="680" />

Usage

For a working implementation of this project see the sample/ folder.

Step 1

Include the library as a local library project or add the dependency in your build.gradle.

dependencies {
    implementation 'me.itangqi.waveloadingview:library:0.3.5'
    // I have uploaded v0.3.5 on 2017-01-06, if it doesn't take effect or your
    // gradle cannot find it in maven central, you may try v0.3.4.
}

Or

Import the library, then add it to your /settings.gradle and /app/build.gradle. If you don't know how to do this, you can read my blog for help.

Step 2

Include the WaveLoadingView widget in your layout. And you can customize it like this.

<me.itangqi.waveloadingview.WaveLoadingView
    android:id="@+id/waveLoadingView"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    app:wlv_borderColor="@color/colorAccent"
    app:wlv_borderWidth="3dp"
    app:wlv_progressValue="40"
    app:wlv_shapeType="circle"
    app:wlv_round_rectangle="true"
    app:wlv_triangle_direction="north"
    app:wlv_titleCenterStrokeColor="@android:color/holo_blue_dark"
    app:wlv_titleCenterStrokeWidth="3dp"
    app:wlv_titleCenter="Center Title"
    app:wlv_titleCenterColor="@android:color/white"
    app:wlv_titleCenterSize="24sp"
    app:wlv_waveAmplitude="70"
    app:wlv_waveColor="@color/colorAccent"/>   

Step 3

You can write some animation codes to the callbacks such as setOnCheckedChangeListener, onProgressChanged, etc in your Activity.

    WaveLoadingView mWaveLoadingView = (WaveLoadingView) findViewById(R.id.waveLoadingView);
    mWaveLoadingView.setShapeType(WaveLoadingView.ShapeType.CIRCLE);
    mWaveLoadingView.setTopTitle("Top Title");
    mWaveLoadingView.setCenterTitleColor(Color.GRAY);
    mWaveLoadingView.setBottomTitleSize(18);
    mWaveLoadingView.setProgressValue(80);
    mWaveLoadingView.setBorderWidth(10);
    mWaveLoadingView.setAmplitudeRatio(60);
    mWaveLoadingView.setWaveColor(Color.GRAY);
    mWaveLoadingView.setBorderColor(Color.GRAY);
    mWaveLoadingView.setTopTitleStrokeColor(Color.BLUE);
    mWaveLoadingView.setTopTitleStrokeWidth(3);
    mWaveLoadingView.setAnimDuration(3000);
    mWaveLoadingView.pauseAnimation();
    mWaveLoadingView.resumeAnimation();
    mWaveLoadingView.cancelAnimation();
    mWaveLoadingView.startAnimation();

Customization

Please feel free to :)

nameformatdescription
wlv_borderWidthdimensionBorder width, default is 0
wlv_borderColorcolorBorder color
wlv_progressValueintegerPprogress value, default is 50
wlv_shapeTypeenumShape type, default is circle
wlv_triangle_directionenumTriangle direction, default is north
wlv_round_rectanglebooleanIs round rectangle, default is false
wlv_round_rectangle_x_and_yintegerRound Rectangle corners, default is 30
wlv_waveColorcolorWave color
wlv_wave_background_ColorcolorWave background color
wlv_waveAmplitudefloatWave amplitude
wlv_titleTopstringTop title content, default is null
wlv_titleCenterstringCenter title content, default is null
wlv_titleBottomstringBottom title content, default is null
wlv_titleTopSizedimensionTop title size, default is 18
wlv_titleCenterSizedimensionCenter title size, default is 22
wlv_titleBottomSizedimensionBottom size, default is 18
wlv_titleTopColorcolorTop title color
wlv_titleCenterColorcolorCenter title color
wlv_titleBottomColorcolorBottom title color
wlv_titleTopStrokeColorcolorTop title stroke color
wlv_titleCenterStrokeColorcolorCenter title stroke color
wlv_titleBottomStrokeColorcolorBottom title stroke color
wlv_titleTopStrokeWidthdimensionTop title stroke width
wlv_titleCenterStrokeWidthdimensionCenter title stroke width
wlv_titleBottomStrokeWidthdimensionBottom title stroke width

All attributes have their respective getters and setters to change them at runtime.

Change Log

0.3.5(2017-01-06)

Update:

0.3.4(2017-01-05)

Update:

Plan:

0.3.3(2016-10-14)

0.3.2(2016-07-29)

Update:

0.3.1(2016-07-23)

Update:

0.3.0 (2016-06-07)

Fixed bugs:

0.2.3(2016-05-25)

Update:

0.2.2(2016-05-23)

Fixed bugs:

0.2.1 (2016-05-21)

Update:

Plan:

0.2.0 (2016-02-17)

Implemented enhancements:

Fixed bugs:

Update:

0.1.5 (2016-01-14)

Fixed bugs:

0.1.4 (2015-12-17)

Fixed bugs:

0.1.3

Fixed bugs:

Demo

Download

Apps using the WaveLoadingView

Feel free to send me new projects

Community

Looking for contributors, feel free to fork !

Tell me if you're using my library in your application, I'll share it in this README.

Thanks

Inspired by

Contact Me

Born in 1992, now a student of Southeast University, master of Software Engineering. Loving technology, programming, reading and sports.

I will graduate in June 2017, expect the internship or full-time job in Android or iOS.

If you have any questions or want to make friends with me, please feel free to contact me : imtangqi#gmail.com

License

Copyright 2016 Qi Tang

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

 http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.