listViewのあるレイアウトがあります
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/testMain"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<ListView
android:id="@+id/notesListView"
android:layout_width="480dp"
android:layout_height="wrap_content"
android:background="#000"
android:divider="#FFF"
android:dividerHeight="5dp"
android:fadingEdge="none"
android:overScrollFooter="#000"
android:layout_marginBottom="15dp"
/>
</RelativeLayout>
ListView_Adapterを使用して、リストにアイテムを動的に追加します。リストのすべての行の右隅にボタンを追加することは可能ですか?