android 布局背景模糊化处理

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

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

Java代码   收藏代码
  1. private void applyBlur() {   
  2.         
  3.     // 获取壁纸管理器    
  4.     WallpaperManager wallpaperManager = WallpaperManager.getInstance(this.getContext());    
  5.     // 获取当前壁纸    
  6.     Drawable wallpaperDrawable = wallpaperManager.getDrawable();    
  7.     // 将Drawable,转成Bitmap    
  8.     Bitmap bmp = ((BitmapDrawable) wallpaperDrawable).getBitmap();    
  9.       
  10.     blur(bmp);   
  11. }   

 

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

Java代码   收藏代码
  1. @TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR1)   
  2. private void blur(Bitmap bkg) {   
  3.     long startMs = System.currentTimeMillis();   
  4.     float radius = 20;   
  5.   
  6.     bkg = small(bkg);  
  7.     Bitmap bitmap = bkg.copy(bkg.getConfig(), true);  
  8.   
  9.     final RenderScript rs = RenderScript.create(this.getContext());  
  10.     final Allocation input = Allocation.createFromBitmap(rs, bkg, Allocation.MipmapControl.MIPMAP_NONE,  
  11.             Allocation.USAGE_SCRIPT);  
  12.     final Allocation output = Allocation.createTyped(rs, input.getType());  
  13.     final ScriptIntrinsicBlur script = ScriptIntrinsicBlur.create(rs, Element.U8_4(rs));  
  14.     script.setRadius(radius);  
  15.     script.setInput(input);  
  16.     script.forEach(output);  
  17.     output.copyTo(bitmap);  
  18.   
  19.     bitmap = big(bitmap);  
  20.     setBackground(new BitmapDrawable(getResources(), bitmap));   
  21.     rs.destroy();   
  22.     Log.d("zhangle","blur take away:" + (System.currentTimeMillis() - startMs )+ "ms");   
  23. }   
  24.   
  25. private static Bitmap big(Bitmap bitmap) {  
  26.       Matrix matrix = new Matrix();   
  27.       matrix.postScale(4f,4f); //长和宽放大缩小的比例  
  28.       Bitmap resizeBmp = Bitmap.createBitmap(bitmap,0,0,bitmap.getWidth(),bitmap.getHeight(),matrix,true);  
  29.       return resizeBmp;  
  30.  }  
  31.   
  32.  private static Bitmap small(Bitmap bitmap) {  
  33.       Matrix matrix = new Matrix();   
  34.       matrix.postScale(0.25f,0.25f); //长和宽放大缩小的比例  
  35.       Bitmap resizeBmp = Bitmap.createBitmap(bitmap,0,0,bitmap.getWidth(),bitmap.getHeight(),matrix,true);  
  36.       return resizeBmp;  
  37. }  

你可能感兴趣的:(android 布局背景模糊化处理)