CircleImageView icon indicating copy to clipboard operation
CircleImageView copied to clipboard

A circular ImageView for Android

Results 21 CircleImageView issues
Sort by recently updated
recently updated
newest added

Hello there, I used this library and it's working fine in android 8,9,10 & 11 but in android 7 app crashing, I used below code:=> please check below crash log:=>...

Caused by java.lang.OutOfMemoryError Failed to allocate a 252016 byte allocation with 137008 free bytes and 133KB until OOM dalvik.system.VMRuntime.newNonMovableArray (VMRuntime.java) android.widget.ImageView. (ImageView.java:145) de.hdodenhof.circleimageview.CircleImageView. (CircleImageView.java:89) de.hdodenhof.circleimageview.CircleImageView. (CircleImageView.java:85)

![image](https://user-images.githubusercontent.com/17972665/153530178-1fae7850-5dfd-4c3e-a71f-15c6930ec35c.png)

` CircularProgressDrawable progress = new CircularProgressDrawable(context); progress.setColorSchemeColors(R.color.colorPrimary, R.color.colorPrimaryDark, R.color.colorAccent); progress.setCenterRadius(30f); progress.setStrokeWidth(5f); progress.start();` ` Glide.with(context) .load(url) .dontAnimate() .error(R.color.color_secondary_10) .placeholder(progress) .into(view);` Hi, when i use CircularProgressDrawable with Glide , I get the...

i'm try to load image from xml but circular image view destroying px of the image any solution ?

Hi, This isn't about an issue but a newbie looking for help. I have an "setting Activity" with a circle image view for the profile picture, but also 3 others...

Caused by: java.lang.NullPointerException: Attempt to invoke virtual method 'void de.hdodenhof.circleimageview.CircleImageView.setOnClickListener(android.view.View$OnClickListener)' on a null object reference

When I use glide to load a gif image and use circleImageView to add rounded corners, CircleImageView loads the gif image and only loads a certain frame of the gif...

enhancement