我正在尝试制作一个视图,其背景不仅是透明的,而且还会产生模糊效果。这样,下面的视图似乎没有焦点。按住电源按钮,我希望它看起来像屏幕一样。有什么想法吗?
答案 0 :(得分:126)
现在窗口标志已被弃用,你必须自己模糊。我在其他地方回答了这个问题,但这里是你如何模糊观点:
现在,您可以使用RenderScript库中的ScriptIntrinsicBlur快速模糊。 Here是访问RenderScript API的方法。以下是我用来模糊视图和位图的课程:
import android.support.v8.renderscript.*;
public class BlurBuilder {
private static final float BITMAP_SCALE = 0.4f;
private static final float BLUR_RADIUS = 7.5f;
public static Bitmap blur(View v) {
return blur(v.getContext(), getScreenshot(v));
}
public static Bitmap blur(Context ctx, Bitmap image) {
int width = Math.round(image.getWidth() * BITMAP_SCALE);
int height = Math.round(image.getHeight() * BITMAP_SCALE);
Bitmap inputBitmap = Bitmap.createScaledBitmap(image, width, height, false);
Bitmap outputBitmap = Bitmap.createBitmap(inputBitmap);
RenderScript rs = RenderScript.create(ctx);
ScriptIntrinsicBlur theIntrinsic = ScriptIntrinsicBlur.create(rs, Element.U8_4(rs));
Allocation tmpIn = Allocation.createFromBitmap(rs, inputBitmap);
Allocation tmpOut = Allocation.createFromBitmap(rs, outputBitmap);
theIntrinsic.setRadius(BLUR_RADIUS);
theIntrinsic.setInput(tmpIn);
theIntrinsic.forEach(tmpOut);
tmpOut.copyTo(outputBitmap);
return outputBitmap;
}
private static Bitmap getScreenshot(View v) {
Bitmap b = Bitmap.createBitmap(v.getWidth(), v.getHeight(), Bitmap.Config.ARGB_8888);
Canvas c = new Canvas(b);
v.draw(c);
return b;
}
}
要将其应用于片段,请将以下内容添加到onCreateView
:
final Activity activity = getActivity();
final View content = activity.findViewById(android.R.id.content).getRootView();
if (content.getWidth() > 0) {
Bitmap image = BlurBuilder.blur(content);
window.setBackgroundDrawable(new BitmapDrawable(activity.getResources(), image));
} else {
content.getViewTreeObserver().addOnGlobalLayoutListener(new OnGlobalLayoutListener() {
@Override
public void onGlobalLayout() {
Bitmap image = BlurBuilder.blur(content);
window.setBackgroundDrawable(new BitmapDrawable(activity.getResources(), image));
}
});
}
注意:此解决方案要求min sdk API 17
编辑:Renderscript包含在支持v8中,可以将此答案降至api 8.要使用 gradle 启用它,请将这些行包含在您的gradle文件中(来自此{{ 3}})并使用包 android.support.v8.renderscript 中的Renderscript:
android {
...
defaultConfig {
...
renderscriptTargetApi *your target api*
renderscriptSupportModeEnabled true
}
...
}
答案 1 :(得分:16)
如果你想要做的就是模糊你的活动后面窗口的背景,那么你可以在你的活动中使用这个调用(或者任何类,比如有一个窗口的AlertDialog)
getWindow().addFlags(WindowManager.LayoutParams.FLAG_BLUR_BEHIND);
更新:此标记在Android 4.0中已弃用,不再有效。
答案 2 :(得分:-1)
模糊是一个不错的选择,它可以轻松地为您提供所需的效果: https://github.com/wasabeef/Blurry
将其添加到项目后,在FrameLayout中包装要模糊的视图,然后在想要模糊时使用此行:
Blurry.with(this).radius(25).sampling(2).onto((ViewGroup) findViewById(R.id.viewToBlurWrapper));