圆形渐变阴影

时间:2017-10-03 19:41:48

标签: android

你能帮我解决一下具有渐变效果的自定义色彩阴影吗?

我需要这个效果用于ImageView阴影

enter image description here

例如,我尝试使用渐变,如:

              <gradient
                android:type="radial"
                android:startColor="#000000"
                android:endColor="#43bababa"
                android:gradientRadius="100dp"
                android:angle="270"/>

enter image description here

但是这个渐变有环效果,而不是圆角。

1 个答案:

答案 0 :(得分:0)

每种可能的解决方案都存在问题:

关于阴影:

  1. 您可以使用CardView。它有圆角和开箱即用的阴影。但据我所知,compat实现并没有削减内部布局的角落。它只是适合图像(因此图像example周围的微小白色笔画)
  2. 您可以使用9个补丁图像作为背景。正确放置布局图层并不容易
  3. 解决方案你会喜欢: 将CardView与RoundedImageView

    一起使用