CircularImageView icon indicating copy to clipboard operation
CircularImageView copied to clipboard

CircularProgressDrawable not working

Open zihadrizkyef opened this issue 4 years ago • 0 comments

Hi, your library help me so much, but with your library, i can't implement this code

implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.1.0"

  val circularProgressDrawable = CircularProgressDrawable(this)
  circularProgressDrawable.strokeWidth = 5f
  circularProgressDrawable.centerRadius = 30f
  circularProgressDrawable.start()

  GlideApp.with(applicationContext)
      .load("https://raw.githubusercontent.com/bumptech/glide/master/static/glide_logo.png")
      .placeholder(circularProgressDrawable)
      .into(a_main_image)

But if i change the view to regular ImageView or AppCompatImageView, those code is work Thank you

zihadrizkyef avatar Nov 22 '21 06:11 zihadrizkyef