我想向可绘制的矢量添加阴影效果(或高程)。
例如
1。我的第一个文件的ic_file_download_black_24dp.xml
中包含一个下载图标
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="48dp"
android:height="48dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#FF2e2e2e"
android:pathData="M19,9h-4V3H9v6H5l7,7 7,-7zM5,18v2h14v-2H5z"/>
2。我的第二个文件在round_shape.xml
中包含一个圆形
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval">
<solid android:color="#fffbc02d" />
<corners
android:bottomLeftRadius="8dp"
android:bottomRightRadius="8dp"
android:topLeftRadius="8dp"
android:topRightRadius="8dp" />
</shape>
3。现在,我将这两个文件合并以创建一个名为layered_download_icon.xml
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/round_shape" />
<item android:drawable="@drawable/ic_file_download_black_24dp" />
</layer-list>
这给了我如下所示的整体图像
现在,我想对放置在 黄色圆圈。我怎样才能做到这一点?
P.S。我在ImageButton中将layered_download_icon
设置为srcCompat
。