FiftyShadesOf
项目地址: florent37/FiftyShadesOf

简介:一个漂亮的视图预加载效果。
An elegant context-care loading placeholder for Android
UsageFiftyShadesOf.with(context) .on(view1, view2, view3) .start();
FiftyShadesOf.with(context) .on(R.id.view1, R.id.view2, R.id.view3) //views id .on(view1, view2, view3) //views references .on(viewGroup) //group of views .exept(view1, view2) //skip a view .start();Cross
(By Default)
FiftyShadesOf.with(context) .on(R.id.view) .start();
FiftyShadesOf.with(context) .on(R.id.view) .fadeIn(true) .start();
In your module
compile 'com.github.florent37:fiftyshadesof:1.0.0'