模糊的活动背景,不知道什么是活动背后

时间:2015-11-21 14:09:13

标签: android css android-activity background-image

每次打开手机时我都会跳过一个活动。

我希望它的背景模糊,所以无论什么活动应该在我的后面打开,都会模糊不清。但我无法知道应该采取什么活动,

因为它不是我应用的活动,可能来自任何应用。

所以我不能使用模糊我在这里使用的最后一项活动的方法

Android, how to blur/glass/frost current activity

我在这里创建了一个模糊构建器

Create blurry transparent background effect

像这样

import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.Canvas;
import android.renderscript.Allocation;
import android.renderscript.Element;
import android.renderscript.RenderScript;
import android.renderscript.ScriptIntrinsicBlur;
import android.view.View;
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;
    }
}

但我不确定如何在我的活动的onCreate上使用它。

谢谢!

1 个答案:

答案 0 :(得分:0)

onCreate()

中使用此功能

片段:

final Activity activity = getActivity();
final View content = activity.findViewById(android.R.id.content).getRootView();
    if (content.getWidth() > 0) {
        Bitmap image = BlurBuilder.blur(content);
        content.setBackground(new BitmapDrawable(activity.getResources(), image));
}

活动:

final View content = findViewById(android.R.id.content).getRootView();
if (content.getWidth() > 0) {
        Bitmap image = BlurBuilder.blur(content);
        content.setBackground(new BitmapDrawable(getResources(), image));
}

修改

onCreate()中的模糊解决方案,添加:

new CountDownTimer(1, 1) {
public void onTick(long millisUntilFinished) {
        }

public void onFinish() {
            final View content = findViewById(android.R.id.content).getRootView();
            if (content.getWidth() > 0) {
                Bitmap image = BlurBuilder.blur(content);
                content.setBackground(new BitmapDrawable(getResources(), image));
            }

        }
}.start();