水滴LoadingView

作者: SimpleFunc | 来源:发表于2019-07-01 19:25 被阅读0次

2016-09-15 11:00

android Loading view animation

demo:

loading_view.gif

Usage:

layout:

<com.dx.dxloadingview.DxLoadingView
       android:id="@+id/loading_view"
       android:layout_width="wrap_content"
       android:layout_height="wrap_content"
       android:layout_gravity="center"
       app:loadingColor="@color/colorPrimary"
       app:animationDuration="2400"
       app:loadingViewSize="large"
       />

animationDuration:单次动画的时间长度

开始动画:

DxLoadingView loadingView = (DxLoadingView) findViewById(R.id.loading_view);
loadingView.startAnimation();

取消加载动画:

loadingView.cancelAnimation();



参考:https://www.uplabs.com/posts/liquid-motion-marketing

source


相关文章

网友评论

    本文标题:水滴LoadingView

    本文链接:https://www.haomeiwen.com/subject/rsbncctx.html