Anne Droid
Anne Droid

Reputation: 3191

Android: Apply a blur effect (BlurMaskFilter) on a View

Is it possible to apply a blur effect (BlurMaskFilter) on a View without using a bitmap screenshot of the View ?

Upvotes: 3

Views: 2771

Answers (1)

nindalf
nindalf

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

Related Questions