I've got the dialog below that shows up on my app... As you can see I have the rounded corners i want but i want to remove the black for transparent edges.
Here is the style xml and image of the dialog:
<?xml version="1.0" encoding="utf-8"?>
<inset xmlns:android="http://schemas.android.com/apk/res/android" android:insetBottom="-1dp">
<shape android:shape="rectangle">
<solid android:color="@color/base" />
<corners android:topLeftRadius="20dp"
android:topRightRadius="20dp"
android:bottomRightRadius="20dp"
android:bottomLeftRadius="20dp" />
<stroke android:color="#7F7F7F"
android:width="1dp" />
</shape>
</inset>