あなたはもっとうまくやることができます。画像ビューの上にテキストビューを配置し、新しいコメントが追加されるたびにその値を更新し続けることができます。以下のように xml でオーバーラップを定義し、それに応じてコード ロジックを調整してコメント数を増やすことができます。とりあえず、ImageView の上に表示するダミー テキスト Hello をセットアップしました。TextView の setText メソッドを使用して、コメント数を追加できます。
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/relativelayout"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<ImageView
android:id="@+id/myImageView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/myImageSouce" />
<TextView
android:id="@+id/myImageViewText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/myImageView"
android:layout_alignTop="@+id/myImageView"
android:layout_alignRight="@+id/myImageView"
android:layout_alignBottom="@+id/myImageView"
android:layout_margin="1dp"
android:gravity="center"
android:text="Hello"
android:textColor="#000000" />
</RelativeLayout>
お役に立てれば...