当我启动我的应用时,它会启动一个Activity
,它应该有透明标题,并且背景中当前显示的内容应该模糊不清。
我能够获得透明度。但我无法弄清楚如何模糊背景。例如,如果我从主屏幕启动应用程序,那么主屏幕应该可见但模糊不清。
我有一个想法是使用Framebuffer来获取当前显示的数据,但是如何将其转换为位图,我可以使用它来绘制图像而不保存图像并直接使用数据。
我也知道我们可以通过按电源和音量按钮来截取屏幕截图。有没有人知道android中的代码在哪里?我的应用程序将具有系统访问权
答案 0 :(得分:4)
如何模糊背景?
您可以使用支持库中提供的RenderScript
public class BlurBuilder {
private static final float BITMAP_SCALE = 0.4f;
private static final float BLUR_RADIUS = 7.5f;
public static Bitmap blur(Context context, 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(context);
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;
}
}
有关详细信息,请参阅this link
或者您可以使用Blurry
有没有人知道android中的代码在哪里?
要获取应用屏幕的屏幕截图,请参阅this link