如何创建包含具有羽毛效果的颜色的阴影?

How to create a shadow that contains colour with a feather effect?

我一直在网上搜索一种方法来为 android 中的 ImageView 创建 glow/shadow 效果。我附上了一个包含我创建的概念的文件;在每张主题卡片下,您都可以看到与卡片本身颜色相同的羽毛状发光效果。

偶然发现此问题的人 post 是否知道实现此目的的方法?我试过“层列表”,它做了一些工作,但不包含发光或羽毛。

任何帮助都会有所帮助,谢谢。

试试这个。

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
    <gradient
        android:angle="135"
        android:centerColor="#6D66C0"
        android:endColor="#794D9D"
        android:startColor="#6375D5" />
    <corners android:radius="20dp" />
</shape>

试试这个:

  • 这种类型的阴影我通过使用 9 补丁图像阴影获得了最佳效果。
  • 你可以使用这个link 9补丁图像影子编辑器

http://inloop.github.io/shadow4android/

  • 关注这个link根据你的招聘你可以做到。

希望对你有所帮助