我想为我的ImageView添加阴影效果,就像从底部透明一样。这里有两张图片 with 和without阴影效果。在android studio中是否有任何库可以制作它?或者从互联网上获取阴影svg文件并放在我的ImageViews上更好吗?
答案 0 :(得分:1)
您可以使用RelativeLayot
像这样使用渐变图像将图像放在同一空间中:
<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>
&#34; grad&#34;图像是这样的:
<?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>