高效适配器 OnItemClick 监听器

发布于 2024-11-03 05:30:05 字数 241 浏览 0 评论 0原文

我使用高效适配器创建了自定义listView。执行此操作后,列表视图的 onItemclicklistener 不起作用。
每当我单击 listView 时,都不会发生任何情况。我不知道如何为高效适配器提供监听器。我用谷歌搜索了这个问题,但我没有得到任何正确的答案,如果有人对这个特定问题有想法,请指导我。

I created custom listView using Efficient adapter. After i did this the onItemclicklistener of the list view is not working.
whenever i click the listView, nothing will happen. I dont know how to give listener to efficient adapter. I googled about this issue but i dint get any proper answer, if anyone having idea about this particular issue pls guide me.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

淡紫姑娘! 2024-11-10 05:30:05

我认为你应该尝试这个,在你的 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 添加侦听器的方法,

如果它有用,请不要忘记将此标记为答案

I think you should try this, in your onCreate() method

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);

this is how you can add listener to ListView

If it is useful then please do not forget to mark this as an answer

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文