アクティビティを通じてこれを行う方法についていくつかの解決策を見つけましたが、レイアウトとグラフィックスにxmlを使用することに固執したいと思います。
プレーンなデフォルトの角ではなく、丸みを帯びたエッジを持つボタンに画像を設定したいと思います。
XMLサンプル:
<ImageView
android:id="@+id/featuredimage"
android:layout_width="0dp"
android:layout_height="fill_parent"
android:layout_weight="1"
android:clickable="true"
android:background="@drawable/rounded"
android:src="@drawable/budlight_sample"
android:scaleType="centerCrop" />
ROUNDED.XML
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval" >
<corners
android:bottomLeftRadius="10dp"
android:bottomRightRadius="10dp"
android:topLeftRadius="10dp"
android:topRightRadius="10dp" >
</corners>
</shape>