avatarview-android
avatarview-android copied to clipboard
✨ Supports loading profile images with fractional styles, shapes, borders, indicators, and initials for Android.
I'm trying to use AvatarView-Coil to load images inside of a ListAdapter with a ViewHolder and I'm seeing weird behavior. Essentially in `onBindViewHolder` I use `loadImage` to load a profile...
avatarView?.loadImage(gifUrl)
Using avatarview in recycler adapter doesn't work When I try to inflate layout this error comes 2022-07-23 14:49:59.117 15628-15628/com.codewithritom.anonchat E/AndroidRuntime: FATAL EXCEPTION: main Process: com.codewithritom.anonchat, PID: 15628 android.view.InflateException: Binary XML...
Hello and congratulations on the amazing library. I have a question here regarding multiple avatars. I saw you support up to 4 avatars in one view. But my case is...
 **== Here My Code:** loadImage( data = imageUrl, requestBuilder = Glide.with(context) .asDrawable() .override(120, 120) .circleCrop() .dontAnimate() .listener(object : RequestListener { override fun onLoadFailed( e: GlideException?, model: Any?, target: com.bumptech.glide.request.target.Target?,...
Hi, Thanks for this amazing library, I found one issue here :- When we set textInitials which contains multiple spaces in between at that time app is crashed :- Eg...
Right now at https://github.com/GetStream/avatarview-android/blob/main/avatarview/src/main/kotlin/io/getstream/avatarview/internal/Extensions.kt#L62 This logic only allows initials i.e. 2 letters in imageview. I think, we should provide an option for end user to write custom logic for parseInitials....
I tested it as an replacement for an Initials Avatar View. It's great and has more customizability than the other library I used. However it's lacking the ability to change...