我有一個帶有ListView的Android應用程序,列表中的每一行都有一個TextView和一個按鈕。我想要做的是將一個OnClickListener添加到ListView中的每個按鈕,但我無法弄清楚如何得到每個Button的某種引用......任何人都可以給我一個提示嗎?Android:將事件監聽器添加到ListView中的每個項目
這裏是我的XML綁定到該ListAdapter:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/row_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:textSize="18sp">
</TextView>
<Button
android:id="@+id/row_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true" />
</RelativeLayout>
而且我想這樣的事情,但它不工作:
SimpleCursorAdapter rows = new SimpleCursorAdapter(this, R.layout.row_layout, cursor, from, to);
setListAdapter(rows);
Button button = (Button) getListAdapter().getView(0, null, getListAdapter()).findViewById(R.id.row_button);
button.setOnClickListener(new View.OnClickListener() {
@Override public void onClick(View v) {
Log.i(TAG, "clicked");
}
});