19 lines
521 B
XML
19 lines
521 B
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="#e0e0e0" />
|
||
|
<corners android:radius="2dp"/>
|
||
|
</shape>
|
||
|
</item>
|
||
|
|
||
|
<item
|
||
|
android:bottom="2dp">
|
||
|
<shape android:shape="rectangle" >
|
||
|
<solid android:color="#88b0f0" />
|
||
|
<corners android:radius="2dp"/>
|
||
|
</shape>
|
||
|
</item>
|
||
|
|
||
|
</layer-list>
|