20 lines
670 B
XML
20 lines
670 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<item android:right="2dp" android:left="2dp" android:top="2dp" android:bottom="4dp">
|
|
<shape android:shape="rectangle">
|
|
<solid android:color="#B4B4B4" /> <!-- Semi-transparent black shadow -->
|
|
<corners android:radius="12dp" />
|
|
</shape>
|
|
</item>
|
|
|
|
<!-- Foreground with background color -->
|
|
<item>
|
|
<shape android:shape="rectangle">
|
|
<solid android:color="#F2F2F2" /> <!-- Light grey background -->
|
|
<corners android:radius="12dp" />
|
|
</shape>
|
|
</item>
|
|
|
|
</layer-list>
|