Reputation: 3191
Is it possible to apply a blur effect (BlurMaskFilter) on a View without using a bitmap screenshot of the View ?
Upvotes: 3
Views: 2771
Reputation: 1136
Have a look at this library - BlurringView by 500px. They describe the design process in a blog post here. The BlurringView blurs any view that is beneath it. They use ScriptIntrinsicBlur
from the android.support.renderscript
library to achieve this effect.
I suppose OP would no longer need it, but this answer might be useful for someone else.
Upvotes: 2