I have tried copying several different examples, used shape layouts, tried images, etc. No matter what I do, it is a though the the background drawable is simply ignored. I intentionally put an error into the drawable xml to be sure it was being seen, that triggered an error. I have my drawable stuff in res/drawable.
Any ideas?
<Button android:id="@+id/buttonClose"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Test"`enter code here`
    android:padding="5dip"
    android:layout_gravity="center"
    android:layout_alignParentBottom="true"
    android:onClick="closeScoreBoard"
    android:background="@drawable/button_close"
    />
<?xml version="1.0" encoding="UTF-8"?>
<shape      xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="oval">
    <solid   android:color="#FF0000"/>
    <corners
        android:bottomRightRadius="8dip"
        android:bottomLeftRadius="8dip"
        android:topLeftRadius="8dip"
        android:topRightRadius="8dip"
/>
</shape>
 
     
     
     
    