18 lines
620 B
XML
18 lines
620 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="#efefef" />
|
|
<corners android:radius="8dp" />
|
|
<!-- <stroke-->
|
|
<!-- android:width="1dp"-->
|
|
<!-- android:color="#505050" />-->
|
|
<padding
|
|
android:bottom="4dp"
|
|
android:left="8dp"
|
|
android:right="8dp"
|
|
android:top="4dp" />
|
|
</shape>
|
|
</item>
|
|
</layer-list> |