-1

I want to create an android screen like this- The background image is faded and has a linear layout over it which gives the image a faded look.

enter image description here

Rahul
  • 878
  • 9
  • 15

2 Answers2

1

It's basically a blurred image background. You can use tools like Photoshop to add the blur effect or if you are looking for dynamic blurs, you could use the StackBlur library.

Simply initialize with the image that you want to blur,

_stackBlurManager = new StackBlurManager(getBitmapFromAsset(this, "yourFile.png"));

And set the blur radius,

_stackBlurManager.process(progress*5);

And then set the blurred as a background for your layout or ImageView.

_imageView.setImageBitmap(_stackBlurManager.returnBlurredImage() );
siriscac
  • 1,699
  • 12
  • 21
1

That is not a faded Image but a blurred image. Changing alpha will fade image not blur it.

This might help

Community
  • 1
  • 1