ImageView底部透明阴影效果

Bottom transparent shadow effect for ImageView

我想为我的 ImageView 添加阴影效果,就像从底部透明一样。这里有两张图片 with and without 阴影效果。有没有可能的方法来制作这样的东西?还是从网上拿shadow svg文件放到原来的imageView上比较好?

您可以像这样使用 RelativeLayot 将您的图像与渐变图像放在同一 space 中:

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <ImageView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:src="@drawable/your_image"/>

    <ImageView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:src="@drawable/grad"/>
</RelativeLayout>

"grad"图片是这样的:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
    <gradient
        android:angle="270"
        android:endColor="#181818"
        android:startColor="#00000000 " />
    <corners android:radius="5dp" />
</shape>