91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android開發中怎么實現一個iOS中的毛玻璃效果

發布時間:2020-12-07 15:36:05 來源:億速云 閱讀:264 作者:Leah 欄目:移動開發

本篇文章為大家展示了Android開發中怎么實現一個iOS中的毛玻璃效果,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。

實現代碼:

<html><head> 
<meta http-equiv="content-type" content="text/html; charset=UTF-8"></head><body><textarea >private 
 void applyBlur() { 
  image.getViewTreeObserver().addOnPreDrawListener(new  
ViewTreeObserver.OnPreDrawListener() { 
    @Override 
    public boolean onPreDraw() { 
      image.getViewTreeObserver().removeOnPreDrawListener(this); 
      image.buildDrawingCache(); 
      Bitmap bmp = image.getDrawingCache(); 
      blur(bmp, text, true); 
      return true; 
    } 
  }); 
} 
@TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR1) 
private void blur(Bitmap bkg, View view) { 
  long startMs = System.currentTimeMillis(); 
  float radius = 20; 
  Bitmap overlay = Bitmap.createBitmap((int)(view.getMeasuredWidth()), 
 (int)(view.getMeasuredHeight()), Bitmap.Config.ARGB_8888); 
  Canvas canvas = new Canvas(overlay); 
  canvas.translate(-view.getLeft(), -view.getTop()); 
  canvas.drawBitmap(bkg, 0, 0, null); 
  RenderScript rs = RenderScript.create(SecondActivity.this); 
  Allocation overlayAlloc = Allocation.createFromBitmap(rs, overlay); 
  ScriptIntrinsicBlur blur = ScriptIntrinsicBlur.create(rs,  
overlayAlloc.getElement()); 
  blur.setInput(overlayAlloc); 
  blur.setRadius(radius); 
  blur.forEach(overlayAlloc); 
  overlayAlloc.copyTo(overlay); 
  view.setBackground(new BitmapDrawable(getResources(), overlay)); 
  rs.destroy(); 
  statusText.setText("cost " + (System.currentTimeMillis() - startMs) + 
 "ms"); 
}</textarea></body></html> 

布局如下:

<&#63;xml version="1.0" encoding="utf-8"&#63;>
<FrameLayout xmlns:Android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
  <ImageView 
    android:id="@+id/picture" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:src="@drawable/splash" 
    android:scaleType="centerCrop" />
  <TextView 
    android:id="@+id/text"
    android:gravity="center_horizontal" 
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="Gaussian Blur"
    android:textColor="@android:color/black"
    android:layout_gravity="center_vertical"
    android:textStyle="bold"
    android:textSize="48sp" />
  <LinearLayout 
    android:id="@+id/controls" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:background="#7f000000" 
    android:orientation="vertical"
    android:layout_gravity="bottom" />
</FrameLayout>

上述內容就是Android開發中怎么實現一個iOS中的毛玻璃效果,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

五家渠市| 阿克陶县| 阳东县| 徐汇区| 日照市| 威海市| 祁门县| 土默特右旗| 清丰县| 兰西县| 察雅县| 张家港市| 隆林| 大安市| 鄂托克旗| 织金县| 山西省| 泸溪县| 江达县| 西贡区| 深州市| 集贤县| 林州市| 濮阳市| 治县。| 哈尔滨市| 崇义县| 浠水县| 清丰县| 闸北区| 长子县| 南京市| 武山县| 浦北县| 岳阳市| 鄂伦春自治旗| 烟台市| 淮滨县| 长白| 阳朔县| 兴城市|