ListView与ImageButton

时间:2011-04-22 16:19:43

标签: android

我是Android开发的新手,我在尝试将ListView与行上的按钮关联时遇到问题。我在我的适配器中声明了按钮,但是我无法在我的活动中触发一个关键的监听器。

public class ntAdapter extends BaseAdapter {
    holder.image = (ImageView) convertView.findViewById(R.id.imageView1);
    holder.AddBut=(ImageButton) convertView.findViewById(R.id.imageButton1);
}

在我的活动中,我有一个listview

public class Zmenu extends Activity {
    ntAdapter adapter=new ntAdapter(this);

    ListView l1 = (ListView) findViewById(R.id.ListView01);
    l1.setAdapter(adapter);
}

在这种情况下,在我的图像上有一个键监听器的代码是什么Button?