9 lines
383 B
XML
9 lines
383 B
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<shape android:shape="rectangle"
|
||
|
|
xmlns:android="http://schemas.android.com/apk/res/android">
|
||
|
|
<stroke android:width="2dp" android:color="#ffffffff" />
|
||
|
|
<solid android:color="#ffffd3d3" />
|
||
|
|
<corners android:topLeftRadius="5dp" android:topRightRadius="5dp" android:bottomLeftRadius="5dp" android:bottomRightRadius="5dp" />
|
||
|
|
</shape>
|
||
|
|
|