Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的应用程序中,我在回收站视图中显示卡片列表。卡片视图由两个文本视图和一个图像视图组成。每当用户单击卡片视图的 imageView 时,我都需要卡片视图的位置。任何帮助,将不胜感激。
您可以在 Adapter 中为 ImageView 设置 OnClickListener ,从那里您可以使用 getAdapterPosition() 方法获取当前 Item 的位置。你也可以看到:
在回收站视图中获取点击项目的位置
如何在 RecyclerView 中选择位置?