wasabeef / Blurry

Blurry is an easy blur library for Android
Apache License 2.0
5.57k stars 602 forks source link

Getting Fatal error randomly: (see comment for error details) #27

Open ka05 opened 8 years ago

ka05 commented 8 years ago

Error: A/libc: Fatal signal 11 (SIGSEGV), code 1, fault addr 0x98c7202c in tid 5202 (pool-2-thread-2)

Here is the only code im executing using this library:

Blurry.with(getActivity()).radius(10).async().capture(mainContainerView).into(blurImage);

where mainContainerView is a linearlayout which wraps my listview in my activity. and blurImage is an ImageView in the fragment that I'm displaying on top of my listview.

The blur works fine but occasionally the app crashes with the error listed above.

If you could add error handling to catch this that would be much appreciated.

I did some research on this error and found this SO post.

See the answer by "David Walton" he might be onto something.

Thanks