A blurring view for Android
developers.500px.com
A blurring view for Android
1–9 of 9 posts
Re: A blurring view for Android
#2Re: A blurring view for Android
#3Re: A blurring view for Android
#4Isn't RenderScript available since API level 11? And there is also a SupportLibrary version that is available for even older versions of Android. What do you mean saying that it's from API level 17?
In the end, we removed Renderscript and replaced it by a custom blur implementation. In our case RS was not used for real time blur rendering, just blurring of a downloaded images, so the computation time is not vital.
I might have tried to reintroduce Renderscript later on, at least for the latest API levels but now that blurring does not fit anymore in Android's design language, we will just remove the blurred views from our app.
Re: A blurring view for Android
#5Re: A blurring view for Android
#6Isn't RenderScript available since API level 11? And there is also a SupportLibrary version that is available for even older versions of Android. What do you mean saying that it's from API level 17?
I have tried using Renderscrip in a large scale application (+1 million daily users) with a min API = 7. It is in fact available through the support library from API 8. However : -The Gaussian Blur Intrinsic is buggy on some terminals ! The implementation of Gaussian Blur in the Nexus 10 makes a mistake in a division (1000 instead of 1024 or the reverse), so we have very visible artefacts on this terminal. It might h…
Re: A blurring view for Android
#7Earlier quoted context omitted.
I have tried using Renderscrip in a large scale application (+1 million daily users) with a min API = 7. It is in fact available through the support library from API 8. However : -The Gaussian Blur Intrinsic is buggy on some terminals ! The implementation of Gaussian Blur in the Nexus 10 makes a mistake in a division (1000 instead of 1024 or the reverse), so we have very visible artefacts on this terminal. It might h…
What about libraries that use the NDK ( https://github.com/kikoso/android-stackblur ) or a Box Blur ( https://github.com/CyberAgent/android-gpuimage ). Have you tried those?
Re: A blurring view for Android
#8Re: A blurring view for Android
#9I've tried BlurringView on a full screen View, the right edge of the View seems not blurred... How can I fix this?