I found that the <layer-list> is the best approach. like this:
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:right="6dip" android:left="6dip">
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<stroke android:color="@color/list_view_outline" android:width="3dip"/>
</shape>
</item>
<item android:right="8dip" android:left="8dip" android:bottom="1dip"
android:top="1dip">
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<corners android:bottomRightRadius="2dip"
android:bottomLeftRadius="2dip" android:topLeftRadius="2dip"
android:topRightRadius="2dip" />
<solid android:color="@android:color/white" />
<stroke android:width="1dip" android:color="#BDBDBD" />
</shape>
</item>
you then need to put the proper margins on your listview row layout, but it works quite nicely.