CircleImageView
CircleImageView copied to clipboard
A circular ImageView for Android
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)

V 1 0 0
` 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
Load gif
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...