我listView
使用Efficient adapter
. 在我这样做之后onItemclicklistener
,列表视图不起作用。
每当我点击listView
,什么都不会发生。我不知道如何listener
给予efficient adapter
。我用谷歌搜索了这个问题,但我没有得到任何正确的答案,如果有人对这个特定问题有想法,请指导我。
问问题
443 次
1 回答
0
我认为你应该在你的 onCreate() 方法中试试这个
setContentView(R.layout.screen);
//Listener is added on the Aircraft List in order to handle touch events
ListView List = (ListView)findViewById(R.id.ListView01);
List.setAdapter(new EfficientAdapter(this));
List.setOnItemClickListener(this);
这就是您如何将侦听器添加到 ListView
如果有用,请不要忘记将其标记为答案
于 2011-04-26T07:05:26.387 回答