如何访问列表视图的单个项目的控件

时间:2012-04-30 18:01:29

标签: android

如何在列表视图中的项目Click listener上访问列表视图的控件?因为我为单个列表视图项设置了自定义布局。

1 个答案:

答案 0 :(得分:1)

附加项目单击侦听器

在创建列表视图的活动中尝试类似于这些

的活动
private void setupListView() {

    //find by view id
    customListView = ((ListView) findViewById(R.id.lv_listview);

    //set custom adapter
    customListView.setAdapter(
    new CustomListAdapter(this, R.id.lv_listview, variableList));

    //attach listener
    customListView.setOnItemClickListener(new OnItemClickListener() {
        public void onItemClick(AdapterView<?> parent, View view,
            int position, long id) {

            /* whatever happens when you click the list item goes here */

        }
    });
}