19 lines
467 B
XML
19 lines
467 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle" >
|
||
|
<corners
|
||
|
android:radius="10px"
|
||
|
/>
|
||
|
<solid
|
||
|
android:color="#66000000"
|
||
|
/>
|
||
|
<padding
|
||
|
android:left="0dp"
|
||
|
android:top="0dp"
|
||
|
android:right="0dp"
|
||
|
android:bottom="0dp"
|
||
|
/>
|
||
|
<size
|
||
|
android:width="280px"
|
||
|
android:height="402px"
|
||
|
/>
|
||
|
</shape>
|