我正在尝试通过Google地图实现此效果(只是底部信息窗口部分周围的阴影)
但到目前为止我能得到的是:
白色背景是我的RelativeLayout
,我试图通过android:background
属性设置XML文件来制作阴影。
//可绘制的XML文件:
<?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="@android:color/white" />
</shape>
</item>
<item android:top="6dp" android:left="0dp" android:bottom="6dp">
<shape
android:shape="rectangle">
<bitmap android:src="@drawable/drawer_shadow_map"></bitmap>
</shape>
</item>
</layer-list>
drawer_shadow_map是一个看起来像的9patch图像
感谢您的帮助。