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; /*from w ww . j a v a2s. c om*/ import android.graphics.Bitmap; public class JNIRender implements BaseRender { static { System.loadLibrary("blurjni"); } private static native void Blur(Bitmap in, Bitmap out, int r); @Override public void blur(float radius, Bitmap in, Bitmap out) { // TODO Auto-generated method stub Blur(in, out, (int)radius); } @Override public void destroy() { // TODO Auto-generated method stub } }