如何在Android上获得模糊效果?

时间:2019-04-09 06:50:11

标签: android blur

我必须提供图片中的背景虚化效果。enter image description here

第一层包含文本和开关,在其下还有另一层,该层颜色的属性为:#f8f8f8 alpha:82。实际颜色位于较低层中,图片中的真实颜色为#D42E2E。在下面的图片中,这些图层可能看起来更好。enter image description here

如何在不使用外部库的情况下完成此操作?

1 个答案:

答案 0 :(得分:2)

这看起来像是渐变,背景为淡红色的中心色和白色的边框色。

您可以使用此Gradient Generator创建渐变。例如,将渐变码另存为drawables-folder中的gradient.xml,并将其用作视图的背景。

这可能是您的渐变

<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle" >
<gradient
android:type="linear"
android:centerX="50%"
android:startColor="#FFFFFFFF"
android:centerColor="#FFFF8A8A"
android:endColor="#FFFFFFFF"
android:angle="90"/>
</shape>

结果

enter image description here