XML has empty body?

Replace the tag

<solid android:color="@color/orange"></solid>

instead of

<solid android:color="@color/orange"/>

//like wise all tags


It appears to have worked by getting rid of the closing tags and replacing them with the self closing tags:

<solid android:color="@color/orange" />


<stroke
    android:width="2dp"
    android:color="@color/orange" />

<padding
    android:bottom="10dp"
    android:left="15dp"
    android:right="15dp"
    android:top="15dp" />

<corners
    android:bottomLeftRadius="0dp"
    android:bottomRightRadius="0dp"
    android:radius="1dp"
    android:topLeftRadius="12dp"
    android:topRightRadius="12dp" />

Tags:

Xml

Android