在布局顶部的阴影边界

时间:2014-12-02 19:00:31

标签: android

我正在尝试通过Google地图实现此效果(只是底部信息窗口部分周围的阴影)

enter image description here

但到目前为止我能得到的是:

this

白色背景是我的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图像 enter image description here

感谢您的帮助。

0 个答案:

没有答案