14 lines
394 B
XML
14 lines
394 B
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||
|
|
<solid android:color="#FFFFFF"/>
|
||
|
|
<corners android:radius="5sp"/>
|
||
|
|
<padding
|
||
|
|
android:left="4sp"
|
||
|
|
android:top="4sp"
|
||
|
|
android:right="4sp"
|
||
|
|
android:bottom="4sp" />
|
||
|
|
<elevation
|
||
|
|
android:radius="1sp"
|
||
|
|
android:color="#66000000"/>
|
||
|
|
</shape>
|