当我启动我的应用程序时,它会启动一个Activity
应该具有透明标题的标题,并且当前在背景中显示的任何内容都应该被模糊。
我能够获得透明度。但我无法弄清楚如何模糊背景。例如,如果我从主屏幕启动应用程序,则主屏幕应该可见但模糊。
我有一个想法使用 Framebuffer 来获取当前显示的数据,但是如何将其转换为位图,我可以使用它来绘制图像而无需保存图像并直接使用数据。
我也知道我们可以通过按电源和音量键来截屏。有谁知道android中的代码在哪里?我的应用程序将具有系统访问权限。
当我启动我的应用程序时,它会启动一个Activity
应该具有透明标题的标题,并且当前在背景中显示的任何内容都应该被模糊。
我能够获得透明度。但我无法弄清楚如何模糊背景。例如,如果我从主屏幕启动应用程序,则主屏幕应该可见但模糊。
我有一个想法使用 Framebuffer 来获取当前显示的数据,但是如何将其转换为位图,我可以使用它来绘制图像而无需保存图像并直接使用数据。
我也知道我们可以通过按电源和音量键来截屏。有谁知道android中的代码在哪里?我的应用程序将具有系统访问权限。
如何模糊背景?
您可以RenderScript
在支持库中使用 available
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;
}
}
有关更多详细信息,请参阅此链接
或者你可以使用模糊
有谁知道android中的代码在哪里?
要截取您的应用屏幕截图,请参阅此链接
我用它给我的编辑文本背景提供了模糊效果,你可以根据自己的喜好修改它,玩弄不透明度:
<?xml version="1.0" encoding="utf-8"?><!-- res/drawable/rounded_edittext.xml -->
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
android:centerColor="#33FFFFFF"
android:endColor="#33FFFFFF"
android:gradientRadius="270"
android:startColor="#33FFFFFF"
android:type="radial" />
<corners
android:bottomLeftRadius="25dp"
android:bottomRightRadius="25dp"
android:topLeftRadius="25dp"
android:topRightRadius="25dp" />
</shape>
作为另一种选择,您可以使用一个小的模糊位图并重复它:
<xml version="1.0" encoding="utf-8"?>
<LinearLayout
android:id="@+id/MainLayout"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:background="@drawable/backrepeat"
>
然后准备:
<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@drawable/back"
android:tileMode="repeat" />