I have a shape (rectangle) for ListItem selector:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"   android:shape="rectangle" >
<solid android:color="#eef0f3" />
<corners
    android:bottomLeftRadius="4dp"
    android:bottomRightRadius="4dp"
    android:topLeftRadius="4dp"
    android:topRightRadius="4dp" />
</shape>
It's rectangle with color #eef0f3, but I need use background image instead of:
<solid android:color="#eef0f3" />
How can I to do this?
 
     
    