在模仿 IOS 密码输入页面的时候发现其背景有模糊处理,于是了解了一下并记录下来,以便使用.在Android 中具体实现方法如下

查考 http://www.cnblogs.com/lipeil/p/3997992.html

private void applyBlur() {   // 获取壁纸管理器  WallpaperManager wallpaperManager = WallpaperManager.getInstance(this.getContext());  // 获取当前壁纸  Drawable wallpaperDrawable = wallpaperManager.getDrawable();  // 将Drawable,转成Bitmap  Bitmap bmp = ((BitmapDrawable) wallpaperDrawable).getBitmap();  blur(bmp); } 

下面之所以要进行small 和big的处理,是因为仅仅靠ScriptIntrinsicBlur 来处理模式,不能到达更模式的效果,如果需要加深模式效果就需要先把背景图片缩小,在处理完之后再放大.这个可以使用Matrix 来实现,而且这样可以缩短模糊化得时间

@TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR1) private void blur(Bitmap bkg) { long startMs = System.currentTimeMillis(); float radius = 20; bkg = small(bkg);Bitmap bitmap = bkg.copy(bkg.getConfig(), true);final RenderScript rs = RenderScript.create(this.getContext());final Allocation input = Allocation.createFromBitmap(rs, bkg, Allocation.MipmapControl.MIPMAP_NONE,Allocation.USAGE_SCRIPT);final Allocation output = Allocation.createTyped(rs, input.getType());final ScriptIntrinsicBlur script = ScriptIntrinsicBlur.create(rs, Element.U8_4(rs));script.setRadius(radius);script.setInput(input);script.forEach(output);output.copyTo(bitmap);bitmap = big(bitmap);setBackground(new BitmapDrawable(getResources(), bitmap)); rs.destroy(); Log.d("zhangle","blur take away:" + (System.currentTimeMillis() - startMs )+ "ms"); } private static Bitmap big(Bitmap bitmap) {  Matrix matrix = new Matrix();   matrix.postScale(4f,4f); //长和宽放大缩小的比例  Bitmap resizeBmp = Bitmap.createBitmap(bitmap,0,0,bitmap.getWidth(),bitmap.getHeight(),matrix,true);  return resizeBmp; } private static Bitmap small(Bitmap bitmap) {  Matrix matrix = new Matrix();   matrix.postScale(0.25f,0.25f); //长和宽放大缩小的比例  Bitmap resizeBmp = Bitmap.createBitmap(bitmap,0,0,bitmap.getWidth(),bitmap.getHeight(),matrix,true);  return resizeBmp;}

更多相关文章

  1. xUtils,butterknife...处理findviewbyid
  2. Android中几种图像特效处理方法小结
  3. 学习笔记(六) 网络编程与数据处理
  4. android 5.1拍照后图片镜像处理
  5. 如何实现Android(安卓)布局背景模糊化处理
  6. Android工作总结之如何做一个优秀的MediaPlayer音频播放器
  7. Androd学习笔记——Android中Touch事件的处理逻辑
  8. android中视频播放的处理
  9. Android开发之消息处理机制(二)——消息循环

随机推荐

  1. 为Android加入busybox工具
  2. Android(安卓)应用程序基础
  3. [转]Android的Camera架构介绍[有图]
  4. Android(安卓)SO文件的兼容和适配
  5. android全平台编译ffmpeg以及x264与fdk-a
  6. Android(安卓)虚拟多开系列二——技术原
  7. Application Fundamentals --1.2
  8. Android开发者指南(1) —— Android(安卓
  9. Android(安卓)性能优化之使用MAT分析内存
  10. android tab和listiew