I add this dependence in build.gradle to blur my imageView :
dependencies {
implementation 'com.jackandphantom.android:blurimage:1.2.0'
}
And the following code in my MainActivity.java :
bgImage = (ImageView) findViewById(R.id.imageView);
Bitmap bitmap = BlurImage.with(getApplicationContext()).load(R.drawable.profilbackground).intensity(25).getImageBlur();
bgImage.setImageBitmap(bitmap);
the problem is this way is just blur to 25 radius and I want it up to 50 or 100. So, how can I change the radius blur of my image view? Please give me a way which does this.
As per the documentation it says like
This library has different methods which you can use to maintain your image blur.
OR
method(intesity):- intensity( int value)
The maximum limit is 25, if you want to change the value, you need to fork that and work out on that feature by yourself, or request the author of the library.
I will tell you a work around for that,