Android 圆形图片 周边圆弧进度显示 类似 音乐播放器进度显示 AroundCircleView

最近在闲暇时间做的小项目中 有一个音乐播放器模块

实现了一个如下的效果

GIF.gif

使用方式

圆角显示图片 来自CircleImageView 在基础上修改 让其可以周边动态显示进度

     app:textBgColor 外围进度的原始背景颜色 

     app:textColor 外围进度条的颜色 

    app:textSize="10dp" 宽度0时不显示

使用方法

    <com.daemon.aroundcircleview.AroundCircleView
        android:id="@+id/acv_icon"
        android:layout_width="200dp"
        android:layout_height="200dp"
        android:layout_centerInParent="true"
        android:layout_gravity="center"
        android:src="@mipmap/head"
        app:textColor="@color/colorAccent"
        app:textBgColor="#000000"
        app:textSize="10dp" />

  ### 直接使用acvIcon.setProgress(progress);即可更新

github地址

相关博客地址