我正在用 ListView 替换 RecyclerView ,但我使用的是 pointToPosition 方法,有没有等效的方法?
最佳答案
对于 RecyclerView 你有 findChildViewUnder (float x, float y) 。
此方法返回一个 subview ,然后您可以使用它来使用 getChildAdapterPosition(View child) 检索适配器位置。
关于android - RecycleView 的 PointToPosition 替代方案,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29244482/