如何从主图像创建褪色背景?

时间:2018-01-11 17:29:10

标签: java android imageview

我有一张照片,我希望背景是主图像的模糊,我该怎么做?就像这样: Image

我尝试使用setAlpha,但它只是使图像变暗。

谢谢!

1 个答案:

答案 0 :(得分:0)

您可以设置ImageView的alpha属性,如下所示:

android:alpha="0.3" //set value between 0-1 of your choice

或您的代码:

ImageView imageView = findViewById(R.id.yourimageViewID);
imageView.setAlpha(0.3f);