1 <?xml version="1.0" encoding="utf-8"?> 2 <layer-list xmlns:android="http://schemas.android.com/apk/res/android" > 3 <item> 4 <shape> 5 <corners 6 android:topLeftRadius="5dp" 7 android:topRightRadius="5dp" /> 8 <solid android:color="#ff66ff66" /> 9 </shape> 10 </item> 11 <!-- 上层 --> 12 <item 13 android:left="1dp" 14 android:right="1dp" 15 android:top="1dp"> 16 <shape> 17 <corners 18 android:topLeftRadius="5dp" 19 android:topRightRadius="5dp" /> 20 <solid android:color="#ffffffff" /> 21 </shape> 22 </item> 23 </layer-list>