Skip to content

niniloveyou/BounceLoadingView

Folders and files

NameName
Last commit message
Last commit date

Latest commit

36175cd · Oct 10, 2016

History

7 Commits
Oct 10, 2016
Oct 10, 2016
Sep 28, 2016
Sep 26, 2016
Sep 26, 2016
Oct 10, 2016
Oct 9, 2016
Sep 28, 2016
Sep 28, 2016
Sep 28, 2016
Sep 28, 2016
Sep 28, 2016

Repository files navigation

BounceLoadingView

模仿饿了么加载效果

#System Requirement

Android API 11+, Because of the use of ValueAnimation, if you want use it on API 8, please use NineoldAndroids library in your project.

#Usage

    loadingView.addBitmap(R.mipmap.v4);
    
    or
    
    loadingView.addBitmap(bitmap);
    
    or
    
    loadingView.addBitmaps(mBitmapList);
    
    //set the shadow color
    loadingView.setShadowColor(Color.LTGRAY);
    
    //set the duration of animation
    loadingView.setDuration(800);

    loadingView.start();