XMLで正方形に円を追加する方法がわかりません。
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle" >
<solid android:color="#00000000" />
<stroke android:width="2dip" android:color="#E68C7C"/>
<padding
android:bottom="5dp"
android:left="5dp"
android:right="5dp"
android:top="5dp" />
上記のxmlをテキストビューの背景として設定しています。その部分はうまく機能します。以下に示すように、正方形の右下隅に円を描こうとしています。