Back to project page LiveBlurListView.
The source code is released under:
Apache License
If you think the Android project LiveBlurListView listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.koalcat.view; import android.graphics.Bitmap; public interface BaseRender { public abstract void blur(float radius, Bitmap in, Bitmap out); public abstract void destroy() ; }