Expectation:
I want to give effect like a black shadow at the top of the ImageView
, only on top. I've tried create a shape for background of the ImageView
like this:
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape android:shape="rectangle">
<solid android:color="@color/black_1_50"/>
<!--shadow Color-->
</shape>
</item>
<item
android:left="0dp"
android:right="0dp"
android:top="20dp"
android:bottom="0dp">
<shape android:shape="oval">
<solid android:color="@color/white_1_60"/>
</shape>
</item>
</layer-list>
But it doesn't work. Any solutions?