0
我有一個佈局一個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項動態地添加到列表中。 是否可以在列表的每一行的右上角添加一個按鈕?
你應該尋找製作自定義列表.... –