11

真的是用包含透明背景的png来实现ImageView的提升吗?例如:我想为这张照片添加高程阴影:

在此处输入图像描述

想要这样:

在此处输入图像描述

4

1 回答 1

1

在您的 XML 中添加:

android:elevation="2dp"    
android:background="@drawable/myrect"

在你的 Drawable 文件夹中添加这个 drawable:

<!-- res/drawable/myrect.xml -->
<shape xmlns:android="http://schemas.android.com/apk/res/android"
       android:shape="rectangle">
    <solid android:color="#42000000" />
    <corners android:radius="5dp" />
</shape>

请参阅此处了解更多信息:http: //developer.android.com/training/material/shadows-clipping.html

于 2015-10-22T15:19:33.410 回答