Dima Saviuk

Results 119 comments of Dima Saviuk

More details, please. I really doubt this can happen if you configured your BlurView properly. What's your root? Does it have a background? Do you use `setFrameClearDrawable`? Post screenshots of...

https://developer.android.com/guide/topics/ui/look-and-feel/darktheme#force-dark Apparently, google uses some hacks to swap the colors during drawing without actually changing the properties of the View. I can only suggest you to implement a proper dark...

What's the type of this progress bar? Default, custom, material? Post your `progressbarForm`

It lags because you set it up in onBindViewHolder, which causes plenty of allocation on scroll. What you need to do is to set it up in ViewHolder constructor once....

You don't need to set up BlurView each time onBindViewHolder is called. Do it once in onCreateViewHolder or in ViewHolder constructor.

You can just create a sample repo and I will take a look at your code. Because I have a feeling that you're still doing something wrong, or have a...

I can suggest you to make list item much simpler, right now it has plenty of redundant Views that serve no purpose. Something like that, just add elevation and rounded...

Actually SurfaceView could be a better alternative since it seems to offer a much better performance. Old POC branch with TextureView: https://github.com/Dimezis/BlurView/tree/TextureView_BlurView

The only assumption I can make is that you're somehow reusing `RenderScriptBlur` object between multiple `.setupWith` calls. This might be the cause. Can you share the overall BlurView usage flow?

Post your layout and what you're passing as a root view to the BlurView