Bitmap API上的ScriptIntrinsicBlur< 14

时间:2016-02-02 14:17:46

标签: java android android-studio bitmap android-api-levels

我需要在Android API< 14中的导航标题视图上放置模糊的背景图像。我在ScriptIntrinsicBlur上阅读了很多文档,但是他已经在API< 17上添加了它。

我知道 Center存在,但它似乎在Windows上使用,而不是在Bitmap Image上使用。

你知道如何在API< 14上模糊Bitmap或Drawable中转换我的Bitmap图像吗?

谢谢!

编辑:

- 第1步:添加到build.gradle(模块:应用):

getWindow().addFlags(WindowManager.LayoutParams.FLAG_BLUR_BEHIND)

- 第2步导入android.support.v8.renderscript。*;

工作! ScriptIntrinsicBlur现在可以使用了。感谢Nikola Despotoski的帮助。

2 个答案:

答案 0 :(得分:3)

您可以使用v8 support library中的ScriptIntrinsicBlur

答案 1 :(得分:1)