<?xml version="1.0" encoding="utf-8"?>
|
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
|
|
<!-- 阴影 -->
|
|
<item>
|
<shape android:shape="rectangle" >
|
|
<gradient
|
android:type="linear"
|
android:endColor="#0f000000"
|
android:startColor="#0f000000"
|
/>
|
|
<corners
|
android:bottomLeftRadius="5dp"
|
android:bottomRightRadius="5dp"
|
android:topLeftRadius="5dp"
|
android:topRightRadius="5dp" />
|
</shape>
|
</item>
|
|
|
<!-- 背景 -->
|
<!-- 背景盖在阴影上面,留出边距让阴影显示出来 -->
|
<item
|
android:bottom="3dp"
|
android:right="1dp"
|
android:left="1dp"
|
android:top="0dp"
|
>
|
<shape android:shape="rectangle" >
|
|
<solid android:color="#ffffff"/>
|
|
<corners
|
android:bottomLeftRadius="5dp"
|
android:bottomRightRadius="5dp"
|
android:topLeftRadius="5dp"
|
android:topRightRadius="5dp" />
|
</shape>
|
</item>
|
|
</layer-list>
|