0
我是新的android開發,我肉是一個問題,試圖將一個ListView與行上的按鈕關聯。我在我的適配器中聲明瞭按鈕,但我不能在我的活動中觸發一個關鍵偵聽器。ListView與ImageButton
public class ntAdapter extends BaseAdapter {
holder.image = (ImageView) convertView.findViewById(R.id.imageView1);
holder.AddBut=(ImageButton) convertView.findViewById(R.id.imageButton1);
}
在我的活動我有一個列表視圖
public class Zmenu extends Activity {
ntAdapter adapter=new ntAdapter(this);
ListView l1 = (ListView) findViewById(R.id.ListView01);
l1.setAdapter(adapter);
}
什麼是在這種情況下的代碼對我的圖像按鈕一鍵收聽?
你是否真的試圖聽按鈕/觸摸該按鈕? – rekaszeru 2011-04-22 16:26:13
你是什麼意思? – George32x 2011-04-23 17:30:36
什麼是關鍵聽衆?你的意思是clickListener? – rekaszeru 2011-04-23 20:17:40